| Line |
Hotness |
Optimization |
Source |
Inline Context |
| 1 |
|
|
/* Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd |
| 2 |
|
|
See the file COPYING for copying permission. |
| 3 |
|
|
|
| 4 |
|
|
|
| 5 |
|
|
#define XML_BUILDING_EXPAT 1 |
| 6 |
|
|
|
| 7 |
|
|
|
| 8 |
|
|
|
| 9 |
|
|
#elif defined(MACOS_CLASSIC) |
| 10 |
|
|
|
| 11 |
|
|
#elif defined(__amigaos__) |
| 12 |
|
|
|
| 13 |
|
|
#elif defined(__WATCOMC__) |
| 14 |
|
|
#include "watcomconfig.h" |
| 15 |
|
|
#elif defined(HAVE_EXPAT_CONFIG_H) |
| 16 |
|
|
#include <expat_config.h> |
| 17 |
|
|
#endif /* ndef COMPILED_FROM_DSP */ |
| 18 |
|
|
|
| 19 |
|
|
|
| 20 |
|
|
#include <string.h> /* memset(), memcpy() */ |
| 21 |
|
|
|
| 22 |
|
|
#include <limits.h> /* UINT_MAX */ |
| 23 |
|
|
#include <time.h> /* time() */ |
| 24 |
|
|
|
| 25 |
|
|
|
| 26 |
|
|
|
| 27 |
|
|
|
| 28 |
|
|
|
| 29 |
|
|
#define XML_ENCODE_MAX XML_UTF16_ENCODE_MAX |
| 30 |
|
|
#define XmlConvert XmlUtf16Convert |
| 31 |
|
|
#define XmlGetInternalEncoding XmlGetUtf16InternalEncoding |
| 32 |
|
|
#define XmlGetInternalEncodingNS XmlGetUtf16InternalEncodingNS |
| 33 |
|
|
#define XmlEncode XmlUtf16Encode |
| 34 |
|
|
/* Using pointer subtraction to convert to integer type. */ |
| 35 |
|
|
#define MUST_CONVERT(enc, s) (!(enc)->isUtf16 || (((char *)(s) - (char *)NULL) & 1)) |
| 36 |
|
|
typedef unsigned short ICHAR; |
| 37 |
|
|
|
| 38 |
|
|
#define XML_ENCODE_MAX XML_UTF8_ENCODE_MAX |
| 39 |
|
|
#define XmlConvert XmlUtf8Convert |
| 40 |
|
|
#define XmlGetInternalEncoding XmlGetUtf8InternalEncoding |
| 41 |
|
|
#define XmlGetInternalEncodingNS XmlGetUtf8InternalEncodingNS |
| 42 |
|
|
#define XmlEncode XmlUtf8Encode |
| 43 |
|
|
#define MUST_CONVERT(enc, s) (!(enc)->isUtf8) |
| 44 |
|
|
|
| 45 |
|
|
|
| 46 |
|
|
|
| 47 |
|
|
|
| 48 |
|
|
|
| 49 |
|
|
|
| 50 |
|
|
#define XmlInitEncodingNS XmlInitEncoding |
| 51 |
|
|
#define XmlInitUnknownEncodingNS XmlInitUnknownEncoding |
| 52 |
|
|
#undef XmlGetInternalEncodingNS |
| 53 |
|
|
#define XmlGetInternalEncodingNS XmlGetInternalEncoding |
| 54 |
|
|
#define XmlParseXmlDeclNS XmlParseXmlDecl |
| 55 |
|
|
|
| 56 |
|
|
|
| 57 |
|
|
|
| 58 |
|
|
|
| 59 |
|
|
|
| 60 |
|
|
#ifdef XML_UNICODE_WCHAR_T |
| 61 |
|
|
#define XML_T(x) (const wchar_t)x |
| 62 |
|
|
|
| 63 |
|
|
|
| 64 |
|
|
#define XML_T(x) (const unsigned short)x |
| 65 |
|
|
|
| 66 |
|
|
|
| 67 |
|
|
|
| 68 |
|
|
|
| 69 |
|
|
|
| 70 |
|
|
|
| 71 |
|
|
|
| 72 |
|
|
|
| 73 |
|
|
|
| 74 |
|
|
|
| 75 |
|
|
/* Round up n to be a multiple of sz, where sz is a power of 2. */ |
| 76 |
|
|
#define ROUND_UP(n, sz) (((n) + ((sz) - 1)) & ~((sz) - 1)) |
| 77 |
|
|
|
| 78 |
|
|
/* Handle the case where memmove() doesn't exist. */ |
| 79 |
|
|
|
| 80 |
|
|
|
| 81 |
|
|
#define memmove(d,s,l) bcopy((s),(d),(l)) |
| 82 |
|
|
|
| 83 |
|
|
#error memmove does not exist on this platform, nor is a substitute available |
| 84 |
|
|
|
| 85 |
|
|
#endif /* HAVE_MEMMOVE */ |
| 86 |
|
|
|
| 87 |
|
|
|
| 88 |
|
|
|
| 89 |
|
|
|
| 90 |
|
|
|
| 91 |
|
|
typedef const XML_Char *KEY; |
| 92 |
|
|
|
| 93 |
|
|
|
| 94 |
|
|
|
| 95 |
|
|
|
| 96 |
|
|
|
| 97 |
|
|
|
| 98 |
|
|
|
| 99 |
|
|
|
| 100 |
|
|
|
| 101 |
|
|
|
| 102 |
|
|
const XML_Memory_Handling_Suite *mem; |
| 103 |
|
|
|
| 104 |
|
|
|
| 105 |
|
|
/* Basic character hash algorithm, taken from Python's string hash: |
| 106 |
|
|
h = h * 1000003 ^ character, the constant being a prime number. |
| 107 |
|
|
|
| 108 |
|
|
|
| 109 |
|
|
|
| 110 |
|
|
#define CHAR_HASH(h, c) \ |
| 111 |
|
|
(((h) * 0xF4243) ^ (unsigned short)(c)) |
| 112 |
|
|
|
| 113 |
|
|
#define CHAR_HASH(h, c) \ |
| 114 |
|
|
(((h) * 0xF4243) ^ (unsigned char)(c)) |
| 115 |
|
|
|
| 116 |
|
|
|
| 117 |
|
|
/* For probing (after a collision) we need a step size relative prime |
| 118 |
|
|
to the hash table size, which is a power of 2. We use double-hashing, |
| 119 |
|
|
since we can calculate a second hash value cheaply by taking those bits |
| 120 |
|
|
of the first hash value that were discarded (masked out) when the table |
| 121 |
|
|
index was calculated: index = hash & mask, where mask = table->size - 1. |
| 122 |
|
|
We limit the maximum step size to table->size / 4 (mask >> 2) and make |
| 123 |
|
|
it odd, since odd numbers are always relative prime to a power of 2. |
| 124 |
|
|
|
| 125 |
|
|
#define SECOND_HASH(hash, mask, power) \ |
| 126 |
|
|
((((hash) & ~(mask)) >> ((power) - 1)) & ((mask) >> 2)) |
| 127 |
|
|
#define PROBE_STEP(hash, mask, power) \ |
| 128 |
|
|
((unsigned char)((SECOND_HASH(hash, mask, power)) | 1)) |
| 129 |
|
|
|
| 130 |
|
|
|
| 131 |
|
|
|
| 132 |
|
|
|
| 133 |
|
|
|
| 134 |
|
|
|
| 135 |
|
|
#define INIT_TAG_BUF_SIZE 32 /* must be a multiple of sizeof(XML_Char) */ |
| 136 |
|
|
#define INIT_DATA_BUF_SIZE 1024 |
| 137 |
|
|
#define INIT_ATTS_SIZE 16 |
| 138 |
|
|
#define INIT_ATTS_VERSION 0xFFFFFFFF |
| 139 |
|
|
#define INIT_BLOCK_SIZE 1024 |
| 140 |
|
|
#define INIT_BUFFER_SIZE 1024 |
| 141 |
|
|
|
| 142 |
|
|
|
| 143 |
|
|
|
| 144 |
|
|
|
| 145 |
|
|
|
| 146 |
|
|
struct binding *nextTagBinding; |
| 147 |
|
|
struct binding *prevPrefixBinding; |
| 148 |
|
|
const struct attribute_id *attId; |
| 149 |
|
|
|
| 150 |
|
|
|
| 151 |
|
|
|
| 152 |
|
|
|
| 153 |
|
|
|
| 154 |
|
|
|
| 155 |
|
|
|
| 156 |
|
|
|
| 157 |
|
|
|
| 158 |
|
|
|
| 159 |
|
|
|
| 160 |
|
|
|
| 161 |
|
|
const XML_Char *localPart; |
| 162 |
|
|
|
| 163 |
|
|
|
| 164 |
|
|
|
| 165 |
|
|
|
| 166 |
|
|
|
| 167 |
|
|
|
| 168 |
|
|
/* TAG represents an open element. |
| 169 |
|
|
The name of the element is stored in both the document and API |
| 170 |
|
|
encodings. The memory buffer 'buf' is a separately-allocated |
| 171 |
|
|
memory area which stores the name. During the XML_Parse()/ |
| 172 |
|
|
XMLParseBuffer() when the element is open, the memory for the 'raw' |
| 173 |
|
|
version of the name (in the document encoding) is shared with the |
| 174 |
|
|
document buffer. If the element is open across calls to |
| 175 |
|
|
XML_Parse()/XML_ParseBuffer(), the buffer is re-allocated to |
| 176 |
|
|
contain the 'raw' name as well. |
| 177 |
|
|
|
| 178 |
|
|
A parser re-uses these structures, maintaining a list of allocated |
| 179 |
|
|
TAG objects in a free list. |
| 180 |
|
|
|
| 181 |
|
|
|
| 182 |
|
|
struct tag *parent; /* parent of this element */ |
| 183 |
|
|
const char *rawName; /* tagName in the original encoding */ |
| 184 |
|
|
|
| 185 |
|
|
TAG_NAME name; /* tagName in the API encoding */ |
| 186 |
|
|
char *buf; /* buffer for name components */ |
| 187 |
|
|
char *bufEnd; /* end of the buffer */ |
| 188 |
|
|
|
| 189 |
|
|
|
| 190 |
|
|
|
| 191 |
|
|
|
| 192 |
|
|
|
| 193 |
|
|
|
| 194 |
|
|
int textLen; /* length in XML_Chars */ |
| 195 |
|
|
int processed; /* # of processed bytes - when suspended */ |
| 196 |
|
|
const XML_Char *systemId; |
| 197 |
|
|
|
| 198 |
|
|
const XML_Char *publicId; |
| 199 |
|
|
const XML_Char *notation; |
| 200 |
|
|
|
| 201 |
|
|
|
| 202 |
|
|
XML_Bool is_internal; /* true if declared in internal subset outside PE */ |
| 203 |
|
|
|
| 204 |
|
|
|
| 205 |
|
|
|
| 206 |
|
|
enum XML_Content_Type type; |
| 207 |
|
|
enum XML_Content_Quant quant; |
| 208 |
|
|
|
| 209 |
|
|
|
| 210 |
|
|
|
| 211 |
|
|
|
| 212 |
|
|
|
| 213 |
|
|
|
| 214 |
|
|
|
| 215 |
|
|
#define INIT_SCAFFOLD_ELEMENTS 32 |
| 216 |
|
|
|
| 217 |
|
|
|
| 218 |
|
|
|
| 219 |
|
|
|
| 220 |
|
|
|
| 221 |
|
|
|
| 222 |
|
|
|
| 223 |
|
|
|
| 224 |
|
|
|
| 225 |
|
|
|
| 226 |
|
|
|
| 227 |
|
|
|
| 228 |
|
|
|
| 229 |
|
|
const XML_Memory_Handling_Suite *mem; |
| 230 |
|
|
|
| 231 |
|
|
|
| 232 |
|
|
/* The XML_Char before the name is used to determine whether |
| 233 |
|
|
an attribute has been specified. */ |
| 234 |
|
|
typedef struct attribute_id { |
| 235 |
|
|
|
| 236 |
|
|
|
| 237 |
|
|
|
| 238 |
|
|
|
| 239 |
|
|
|
| 240 |
|
|
|
| 241 |
|
|
|
| 242 |
|
|
|
| 243 |
|
|
|
| 244 |
|
|
|
| 245 |
|
|
|
| 246 |
|
|
|
| 247 |
|
|
|
| 248 |
|
|
|
| 249 |
|
|
|
| 250 |
|
|
|
| 251 |
|
|
|
| 252 |
|
|
|
| 253 |
|
|
|
| 254 |
|
|
|
| 255 |
|
|
|
| 256 |
|
|
const ATTRIBUTE_ID *idAtt; |
| 257 |
|
|
|
| 258 |
|
|
|
| 259 |
|
|
DEFAULT_ATTRIBUTE *defaultAtts; |
| 260 |
|
|
|
| 261 |
|
|
|
| 262 |
|
|
|
| 263 |
|
|
HASH_TABLE generalEntities; |
| 264 |
|
|
|
| 265 |
|
|
|
| 266 |
|
|
|
| 267 |
|
|
|
| 268 |
|
|
STRING_POOL entityValuePool; |
| 269 |
|
|
/* false once a parameter entity reference has been skipped */ |
| 270 |
|
|
|
| 271 |
|
|
/* true once an internal or external PE reference has been encountered; |
| 272 |
|
|
this includes the reference to an external subset */ |
| 273 |
|
|
XML_Bool hasParamEntityRefs; |
| 274 |
|
|
|
| 275 |
|
|
|
| 276 |
|
|
/* indicates if external PE has been read */ |
| 277 |
|
|
XML_Bool paramEntityRead; |
| 278 |
|
|
HASH_TABLE paramEntities; |
| 279 |
|
|
|
| 280 |
|
|
|
| 281 |
|
|
/* === scaffolding for building content model === */ |
| 282 |
|
|
|
| 283 |
|
|
CONTENT_SCAFFOLD *scaffold; |
| 284 |
|
|
unsigned contentStringLen; |
| 285 |
|
|
|
| 286 |
|
|
|
| 287 |
|
|
|
| 288 |
|
|
|
| 289 |
|
|
|
| 290 |
|
|
|
| 291 |
|
|
typedef struct open_internal_entity { |
| 292 |
|
|
const char *internalEventPtr; |
| 293 |
|
|
const char *internalEventEndPtr; |
| 294 |
|
|
struct open_internal_entity *next; |
| 295 |
|
|
|
| 296 |
|
|
|
| 297 |
|
|
XML_Bool betweenDecl; /* WFC: PE Between Declarations */ |
| 298 |
|
|
|
| 299 |
|
|
|
| 300 |
|
|
typedef enum XML_Error PTRCALL Processor(XML_Parser parser, |
| 301 |
|
|
|
| 302 |
|
|
|
| 303 |
|
|
|
| 304 |
|
|
|
| 305 |
|
|
static Processor prologProcessor; |
| 306 |
|
|
static Processor prologInitProcessor; |
| 307 |
|
|
static Processor contentProcessor; |
| 308 |
|
|
static Processor cdataSectionProcessor; |
| 309 |
|
|
|
| 310 |
|
|
static Processor ignoreSectionProcessor; |
| 311 |
|
|
static Processor externalParEntProcessor; |
| 312 |
|
|
static Processor externalParEntInitProcessor; |
| 313 |
|
|
static Processor entityValueProcessor; |
| 314 |
|
|
static Processor entityValueInitProcessor; |
| 315 |
|
|
|
| 316 |
|
|
static Processor epilogProcessor; |
| 317 |
|
|
static Processor errorProcessor; |
| 318 |
|
|
static Processor externalEntityInitProcessor; |
| 319 |
|
|
static Processor externalEntityInitProcessor2; |
| 320 |
|
|
static Processor externalEntityInitProcessor3; |
| 321 |
|
|
static Processor externalEntityContentProcessor; |
| 322 |
|
|
static Processor internalEntityProcessor; |
| 323 |
|
|
|
| 324 |
|
|
|
| 325 |
|
|
handleUnknownEncoding(XML_Parser parser, const XML_Char *encodingName); |
| 326 |
|
|
|
| 327 |
|
|
processXmlDecl(XML_Parser parser, int isGeneralTextEntity, |
| 328 |
|
|
const char *s, const char *next); |
| 329 |
|
|
|
| 330 |
|
|
initializeEncoding(XML_Parser parser); |
| 331 |
|
|
|
| 332 |
|
|
doProlog(XML_Parser parser, const ENCODING *enc, const char *s, |
| 333 |
|
|
const char *end, int tok, const char *next, const char **nextPtr, |
| 334 |
|
|
|
| 335 |
|
|
|
| 336 |
|
|
processInternalEntity(XML_Parser parser, ENTITY *entity, |
| 337 |
|
|
|
| 338 |
|
|
|
| 339 |
|
|
doContent(XML_Parser parser, int startTagLevel, const ENCODING *enc, |
| 340 |
|
|
const char *start, const char *end, const char **endPtr, |
| 341 |
|
|
|
| 342 |
|
|
|
| 343 |
|
|
doCdataSection(XML_Parser parser, const ENCODING *, const char **startPtr, |
| 344 |
|
|
const char *end, const char **nextPtr, XML_Bool haveMore); |
| 345 |
|
|
|
| 346 |
|
|
|
| 347 |
|
|
doIgnoreSection(XML_Parser parser, const ENCODING *, const char **startPtr, |
| 348 |
|
|
const char *end, const char **nextPtr, XML_Bool haveMore); |
| 349 |
|
|
|
| 350 |
|
|
|
| 351 |
|
|
|
| 352 |
|
|
storeAtts(XML_Parser parser, const ENCODING *, const char *s, |
| 353 |
|
|
TAG_NAME *tagNamePtr, BINDING **bindingsPtr); |
| 354 |
|
|
|
| 355 |
|
|
addBinding(XML_Parser parser, PREFIX *prefix, const ATTRIBUTE_ID *attId, |
| 356 |
|
|
const XML_Char *uri, BINDING **bindingsPtr); |
| 357 |
|
|
|
| 358 |
|
|
defineAttribute(ELEMENT_TYPE *type, ATTRIBUTE_ID *, XML_Bool isCdata, |
| 359 |
|
|
XML_Bool isId, const XML_Char *dfltValue, XML_Parser parser); |
| 360 |
|
|
|
| 361 |
|
|
storeAttributeValue(XML_Parser parser, const ENCODING *, XML_Bool isCdata, |
| 362 |
|
|
const char *, const char *, STRING_POOL *); |
| 363 |
|
|
|
| 364 |
|
|
appendAttributeValue(XML_Parser parser, const ENCODING *, XML_Bool isCdata, |
| 365 |
|
|
const char *, const char *, STRING_POOL *); |
| 366 |
|
|
|
| 367 |
|
|
getAttributeId(XML_Parser parser, const ENCODING *enc, const char *start, |
| 368 |
|
|
|
| 369 |
|
|
|
| 370 |
|
|
setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *); |
| 371 |
|
|
|
| 372 |
|
|
storeEntityValue(XML_Parser parser, const ENCODING *enc, const char *start, |
| 373 |
|
|
|
| 374 |
|
|
|
| 375 |
|
|
reportProcessingInstruction(XML_Parser parser, const ENCODING *enc, |
| 376 |
|
|
const char *start, const char *end); |
| 377 |
|
|
|
| 378 |
|
|
reportComment(XML_Parser parser, const ENCODING *enc, const char *start, |
| 379 |
|
|
|
| 380 |
|
|
|
| 381 |
|
|
reportDefault(XML_Parser parser, const ENCODING *enc, const char *start, |
| 382 |
|
|
|
| 383 |
|
|
|
| 384 |
|
|
static const XML_Char * getContext(XML_Parser parser); |
| 385 |
|
|
|
| 386 |
|
|
setContext(XML_Parser parser, const XML_Char *context); |
| 387 |
|
|
|
| 388 |
|
|
static void FASTCALL normalizePublicId(XML_Char *s); |
| 389 |
|
|
|
| 390 |
|
|
static DTD * dtdCreate(const XML_Memory_Handling_Suite *ms); |
| 391 |
|
|
/* do not call if parentParser != NULL */ |
| 392 |
|
|
static void dtdReset(DTD *p, const XML_Memory_Handling_Suite *ms); |
| 393 |
|
|
|
| 394 |
|
|
dtdDestroy(DTD *p, XML_Bool isDocEntity, const XML_Memory_Handling_Suite *ms); |
| 395 |
|
|
|
| 396 |
|
|
dtdCopy(XML_Parser oldParser, |
| 397 |
|
|
DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms); |
| 398 |
|
|
|
| 399 |
|
|
copyEntityTable(XML_Parser oldParser, |
| 400 |
|
|
HASH_TABLE *, STRING_POOL *, const HASH_TABLE *); |
| 401 |
|
|
|
| 402 |
|
|
lookup(XML_Parser parser, HASH_TABLE *table, KEY name, size_t createSize); |
| 403 |
|
|
|
| 404 |
|
|
hashTableInit(HASH_TABLE *, const XML_Memory_Handling_Suite *ms); |
| 405 |
|
|
static void FASTCALL hashTableClear(HASH_TABLE *); |
| 406 |
|
|
static void FASTCALL hashTableDestroy(HASH_TABLE *); |
| 407 |
|
|
|
| 408 |
|
|
hashTableIterInit(HASH_TABLE_ITER *, const HASH_TABLE *); |
| 409 |
|
|
static NAMED * FASTCALL hashTableIterNext(HASH_TABLE_ITER *); |
| 410 |
|
|
|
| 411 |
|
|
|
| 412 |
|
|
poolInit(STRING_POOL *, const XML_Memory_Handling_Suite *ms); |
| 413 |
|
|
static void FASTCALL poolClear(STRING_POOL *); |
| 414 |
|
|
static void FASTCALL poolDestroy(STRING_POOL *); |
| 415 |
|
|
|
| 416 |
|
|
poolAppend(STRING_POOL *pool, const ENCODING *enc, |
| 417 |
|
|
const char *ptr, const char *end); |
| 418 |
|
|
|
| 419 |
|
|
poolStoreString(STRING_POOL *pool, const ENCODING *enc, |
| 420 |
|
|
const char *ptr, const char *end); |
| 421 |
|
|
static XML_Bool FASTCALL poolGrow(STRING_POOL *pool); |
| 422 |
|
|
static const XML_Char * FASTCALL |
| 423 |
|
|
poolCopyString(STRING_POOL *pool, const XML_Char *s); |
| 424 |
|
|
|
| 425 |
|
|
poolCopyStringN(STRING_POOL *pool, const XML_Char *s, int n); |
| 426 |
|
|
static const XML_Char * FASTCALL |
| 427 |
|
|
poolAppendString(STRING_POOL *pool, const XML_Char *s); |
| 428 |
|
|
|
| 429 |
|
|
static int FASTCALL nextScaffoldPart(XML_Parser parser); |
| 430 |
|
|
static XML_Content * build_model(XML_Parser parser); |
| 431 |
|
|
|
| 432 |
|
|
getElementType(XML_Parser parser, const ENCODING *enc, |
| 433 |
|
|
const char *ptr, const char *end); |
| 434 |
|
|
|
| 435 |
|
|
static unsigned long generate_hash_secret_salt(void); |
| 436 |
|
|
static XML_Bool startParsing(XML_Parser parser); |
| 437 |
|
|
|
| 438 |
|
|
|
| 439 |
|
|
parserCreate(const XML_Char *encodingName, |
| 440 |
|
|
const XML_Memory_Handling_Suite *memsuite, |
| 441 |
|
|
|
| 442 |
|
|
|
| 443 |
|
|
|
| 444 |
|
|
|
| 445 |
|
|
parserInit(XML_Parser parser, const XML_Char *encodingName); |
| 446 |
|
|
|
| 447 |
|
|
#define poolStart(pool) ((pool)->start) |
| 448 |
|
|
#define poolEnd(pool) ((pool)->ptr) |
| 449 |
|
|
#define poolLength(pool) ((pool)->ptr - (pool)->start) |
| 450 |
|
|
#define poolChop(pool) ((void)--(pool->ptr)) |
| 451 |
|
|
#define poolLastChar(pool) (((pool)->ptr)[-1]) |
| 452 |
|
|
#define poolDiscard(pool) ((pool)->ptr = (pool)->start) |
| 453 |
|
|
#define poolFinish(pool) ((pool)->start = (pool)->ptr) |
| 454 |
|
|
#define poolAppendChar(pool, c) \ |
| 455 |
|
|
(((pool)->ptr == (pool)->end && !poolGrow(pool)) \ |
| 456 |
|
|
|
| 457 |
|
|
: ((*((pool)->ptr)++ = c), 1)) |
| 458 |
|
|
|
| 459 |
|
|
struct XML_ParserStruct { |
| 460 |
|
|
/* The first member must be userData so that the XML_GetUserData |
| 461 |
|
|
|
| 462 |
|
|
|
| 463 |
|
|
|
| 464 |
|
|
|
| 465 |
|
|
const XML_Memory_Handling_Suite m_mem; |
| 466 |
|
|
/* first character to be parsed */ |
| 467 |
|
|
|
| 468 |
|
|
/* past last character to be parsed */ |
| 469 |
|
|
|
| 470 |
|
|
/* allocated end of buffer */ |
| 471 |
|
|
|
| 472 |
|
|
XML_Index m_parseEndByteIndex; |
| 473 |
|
|
const char *m_parseEndPtr; |
| 474 |
|
|
|
| 475 |
|
|
|
| 476 |
|
|
XML_StartElementHandler m_startElementHandler; |
| 477 |
|
|
XML_EndElementHandler m_endElementHandler; |
| 478 |
|
|
XML_CharacterDataHandler m_characterDataHandler; |
| 479 |
|
|
XML_ProcessingInstructionHandler m_processingInstructionHandler; |
| 480 |
|
|
XML_CommentHandler m_commentHandler; |
| 481 |
|
|
XML_StartCdataSectionHandler m_startCdataSectionHandler; |
| 482 |
|
|
XML_EndCdataSectionHandler m_endCdataSectionHandler; |
| 483 |
|
|
XML_DefaultHandler m_defaultHandler; |
| 484 |
|
|
XML_StartDoctypeDeclHandler m_startDoctypeDeclHandler; |
| 485 |
|
|
XML_EndDoctypeDeclHandler m_endDoctypeDeclHandler; |
| 486 |
|
|
XML_UnparsedEntityDeclHandler m_unparsedEntityDeclHandler; |
| 487 |
|
|
XML_NotationDeclHandler m_notationDeclHandler; |
| 488 |
|
|
XML_StartNamespaceDeclHandler m_startNamespaceDeclHandler; |
| 489 |
|
|
XML_EndNamespaceDeclHandler m_endNamespaceDeclHandler; |
| 490 |
|
|
XML_NotStandaloneHandler m_notStandaloneHandler; |
| 491 |
|
|
XML_ExternalEntityRefHandler m_externalEntityRefHandler; |
| 492 |
|
|
XML_Parser m_externalEntityRefHandlerArg; |
| 493 |
|
|
XML_SkippedEntityHandler m_skippedEntityHandler; |
| 494 |
|
|
XML_UnknownEncodingHandler m_unknownEncodingHandler; |
| 495 |
|
|
XML_ElementDeclHandler m_elementDeclHandler; |
| 496 |
|
|
XML_AttlistDeclHandler m_attlistDeclHandler; |
| 497 |
|
|
XML_EntityDeclHandler m_entityDeclHandler; |
| 498 |
|
|
XML_XmlDeclHandler m_xmlDeclHandler; |
| 499 |
|
|
const ENCODING *m_encoding; |
| 500 |
|
|
INIT_ENCODING m_initEncoding; |
| 501 |
|
|
const ENCODING *m_internalEncoding; |
| 502 |
|
|
const XML_Char *m_protocolEncodingName; |
| 503 |
|
|
|
| 504 |
|
|
|
| 505 |
|
|
void *m_unknownEncodingMem; |
| 506 |
|
|
void *m_unknownEncodingData; |
| 507 |
|
|
void *m_unknownEncodingHandlerData; |
| 508 |
|
|
void (XMLCALL *m_unknownEncodingRelease)(void *); |
| 509 |
|
|
PROLOG_STATE m_prologState; |
| 510 |
|
|
|
| 511 |
|
|
enum XML_Error m_errorCode; |
| 512 |
|
|
|
| 513 |
|
|
const char *m_eventEndPtr; |
| 514 |
|
|
const char *m_positionPtr; |
| 515 |
|
|
OPEN_INTERNAL_ENTITY *m_openInternalEntities; |
| 516 |
|
|
OPEN_INTERNAL_ENTITY *m_freeInternalEntities; |
| 517 |
|
|
XML_Bool m_defaultExpandInternalEntities; |
| 518 |
|
|
|
| 519 |
|
|
|
| 520 |
|
|
const XML_Char *m_doctypeName; |
| 521 |
|
|
const XML_Char *m_doctypeSysid; |
| 522 |
|
|
const XML_Char *m_doctypePubid; |
| 523 |
|
|
const XML_Char *m_declAttributeType; |
| 524 |
|
|
const XML_Char *m_declNotationName; |
| 525 |
|
|
const XML_Char *m_declNotationPublicId; |
| 526 |
|
|
ELEMENT_TYPE *m_declElementType; |
| 527 |
|
|
ATTRIBUTE_ID *m_declAttributeId; |
| 528 |
|
|
XML_Bool m_declAttributeIsCdata; |
| 529 |
|
|
XML_Bool m_declAttributeIsId; |
| 530 |
|
|
|
| 531 |
|
|
const XML_Char *m_curBase; |
| 532 |
|
|
|
| 533 |
|
|
|
| 534 |
|
|
BINDING *m_inheritedBindings; |
| 535 |
|
|
BINDING *m_freeBindingList; |
| 536 |
|
|
|
| 537 |
|
|
|
| 538 |
|
|
|
| 539 |
|
|
|
| 540 |
|
|
|
| 541 |
|
|
unsigned long m_nsAttsVersion; |
| 542 |
|
|
unsigned char m_nsAttsPower; |
| 543 |
|
|
|
| 544 |
|
|
|
| 545 |
|
|
|
| 546 |
|
|
|
| 547 |
|
|
|
| 548 |
|
|
|
| 549 |
|
|
|
| 550 |
|
|
unsigned int m_groupSize; |
| 551 |
|
|
XML_Char m_namespaceSeparator; |
| 552 |
|
|
XML_Parser m_parentParser; |
| 553 |
|
|
XML_ParsingStatus m_parsingStatus; |
| 554 |
|
|
|
| 555 |
|
|
XML_Bool m_isParamEntity; |
| 556 |
|
|
XML_Bool m_useForeignDTD; |
| 557 |
|
|
enum XML_ParamEntityParsing m_paramEntityParsing; |
| 558 |
|
|
|
| 559 |
|
|
unsigned long m_hash_secret_salt; |
| 560 |
|
|
|
| 561 |
|
|
|
| 562 |
|
|
#define MALLOC(s) (parser->m_mem.malloc_fcn((s))) |
| 563 |
|
|
#define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s))) |
| 564 |
|
|
#define FREE(p) (parser->m_mem.free_fcn((p))) |
| 565 |
|
|
|
| 566 |
|
|
#define userData (parser->m_userData) |
| 567 |
|
|
#define handlerArg (parser->m_handlerArg) |
| 568 |
|
|
#define startElementHandler (parser->m_startElementHandler) |
| 569 |
|
|
#define endElementHandler (parser->m_endElementHandler) |
| 570 |
|
|
#define characterDataHandler (parser->m_characterDataHandler) |
| 571 |
|
|
#define processingInstructionHandler \ |
| 572 |
|
|
(parser->m_processingInstructionHandler) |
| 573 |
|
|
#define commentHandler (parser->m_commentHandler) |
| 574 |
|
|
#define startCdataSectionHandler \ |
| 575 |
|
|
(parser->m_startCdataSectionHandler) |
| 576 |
|
|
#define endCdataSectionHandler (parser->m_endCdataSectionHandler) |
| 577 |
|
|
#define defaultHandler (parser->m_defaultHandler) |
| 578 |
|
|
#define startDoctypeDeclHandler (parser->m_startDoctypeDeclHandler) |
| 579 |
|
|
#define endDoctypeDeclHandler (parser->m_endDoctypeDeclHandler) |
| 580 |
|
|
#define unparsedEntityDeclHandler \ |
| 581 |
|
|
(parser->m_unparsedEntityDeclHandler) |
| 582 |
|
|
#define notationDeclHandler (parser->m_notationDeclHandler) |
| 583 |
|
|
#define startNamespaceDeclHandler \ |
| 584 |
|
|
(parser->m_startNamespaceDeclHandler) |
| 585 |
|
|
#define endNamespaceDeclHandler (parser->m_endNamespaceDeclHandler) |
| 586 |
|
|
#define notStandaloneHandler (parser->m_notStandaloneHandler) |
| 587 |
|
|
#define externalEntityRefHandler \ |
| 588 |
|
|
(parser->m_externalEntityRefHandler) |
| 589 |
|
|
#define externalEntityRefHandlerArg \ |
| 590 |
|
|
(parser->m_externalEntityRefHandlerArg) |
| 591 |
|
|
#define internalEntityRefHandler \ |
| 592 |
|
|
(parser->m_internalEntityRefHandler) |
| 593 |
|
|
#define skippedEntityHandler (parser->m_skippedEntityHandler) |
| 594 |
|
|
#define unknownEncodingHandler (parser->m_unknownEncodingHandler) |
| 595 |
|
|
#define elementDeclHandler (parser->m_elementDeclHandler) |
| 596 |
|
|
#define attlistDeclHandler (parser->m_attlistDeclHandler) |
| 597 |
|
|
#define entityDeclHandler (parser->m_entityDeclHandler) |
| 598 |
|
|
#define xmlDeclHandler (parser->m_xmlDeclHandler) |
| 599 |
|
|
#define encoding (parser->m_encoding) |
| 600 |
|
|
#define initEncoding (parser->m_initEncoding) |
| 601 |
|
|
#define internalEncoding (parser->m_internalEncoding) |
| 602 |
|
|
#define unknownEncodingMem (parser->m_unknownEncodingMem) |
| 603 |
|
|
#define unknownEncodingData (parser->m_unknownEncodingData) |
| 604 |
|
|
#define unknownEncodingHandlerData \ |
| 605 |
|
|
(parser->m_unknownEncodingHandlerData) |
| 606 |
|
|
#define unknownEncodingRelease (parser->m_unknownEncodingRelease) |
| 607 |
|
|
#define protocolEncodingName (parser->m_protocolEncodingName) |
| 608 |
|
|
#define ns (parser->m_ns) |
| 609 |
|
|
#define ns_triplets (parser->m_ns_triplets) |
| 610 |
|
|
#define prologState (parser->m_prologState) |
| 611 |
|
|
#define processor (parser->m_processor) |
| 612 |
|
|
#define errorCode (parser->m_errorCode) |
| 613 |
|
|
#define eventPtr (parser->m_eventPtr) |
| 614 |
|
|
#define eventEndPtr (parser->m_eventEndPtr) |
| 615 |
|
|
#define positionPtr (parser->m_positionPtr) |
| 616 |
|
|
#define position (parser->m_position) |
| 617 |
|
|
#define openInternalEntities (parser->m_openInternalEntities) |
| 618 |
|
|
#define freeInternalEntities (parser->m_freeInternalEntities) |
| 619 |
|
|
#define defaultExpandInternalEntities \ |
| 620 |
|
|
(parser->m_defaultExpandInternalEntities) |
| 621 |
|
|
#define tagLevel (parser->m_tagLevel) |
| 622 |
|
|
#define buffer (parser->m_buffer) |
| 623 |
|
|
#define bufferPtr (parser->m_bufferPtr) |
| 624 |
|
|
#define bufferEnd (parser->m_bufferEnd) |
| 625 |
|
|
#define parseEndByteIndex (parser->m_parseEndByteIndex) |
| 626 |
|
|
#define parseEndPtr (parser->m_parseEndPtr) |
| 627 |
|
|
#define bufferLim (parser->m_bufferLim) |
| 628 |
|
|
#define dataBuf (parser->m_dataBuf) |
| 629 |
|
|
#define dataBufEnd (parser->m_dataBufEnd) |
| 630 |
|
|
#define _dtd (parser->m_dtd) |
| 631 |
|
|
#define curBase (parser->m_curBase) |
| 632 |
|
|
#define declEntity (parser->m_declEntity) |
| 633 |
|
|
#define doctypeName (parser->m_doctypeName) |
| 634 |
|
|
#define doctypeSysid (parser->m_doctypeSysid) |
| 635 |
|
|
#define doctypePubid (parser->m_doctypePubid) |
| 636 |
|
|
#define declAttributeType (parser->m_declAttributeType) |
| 637 |
|
|
#define declNotationName (parser->m_declNotationName) |
| 638 |
|
|
#define declNotationPublicId (parser->m_declNotationPublicId) |
| 639 |
|
|
#define declElementType (parser->m_declElementType) |
| 640 |
|
|
#define declAttributeId (parser->m_declAttributeId) |
| 641 |
|
|
#define declAttributeIsCdata (parser->m_declAttributeIsCdata) |
| 642 |
|
|
#define declAttributeIsId (parser->m_declAttributeIsId) |
| 643 |
|
|
#define freeTagList (parser->m_freeTagList) |
| 644 |
|
|
#define freeBindingList (parser->m_freeBindingList) |
| 645 |
|
|
#define inheritedBindings (parser->m_inheritedBindings) |
| 646 |
|
|
#define tagStack (parser->m_tagStack) |
| 647 |
|
|
#define atts (parser->m_atts) |
| 648 |
|
|
#define attsSize (parser->m_attsSize) |
| 649 |
|
|
#define nSpecifiedAtts (parser->m_nSpecifiedAtts) |
| 650 |
|
|
#define idAttIndex (parser->m_idAttIndex) |
| 651 |
|
|
#define nsAtts (parser->m_nsAtts) |
| 652 |
|
|
#define nsAttsVersion (parser->m_nsAttsVersion) |
| 653 |
|
|
#define nsAttsPower (parser->m_nsAttsPower) |
| 654 |
|
|
#define attInfo (parser->m_attInfo) |
| 655 |
|
|
#define tempPool (parser->m_tempPool) |
| 656 |
|
|
#define temp2Pool (parser->m_temp2Pool) |
| 657 |
|
|
#define groupConnector (parser->m_groupConnector) |
| 658 |
|
|
#define groupSize (parser->m_groupSize) |
| 659 |
|
|
#define namespaceSeparator (parser->m_namespaceSeparator) |
| 660 |
|
|
#define parentParser (parser->m_parentParser) |
| 661 |
|
|
#define ps_parsing (parser->m_parsingStatus.parsing) |
| 662 |
|
|
#define ps_finalBuffer (parser->m_parsingStatus.finalBuffer) |
| 663 |
|
|
|
| 664 |
|
|
#define isParamEntity (parser->m_isParamEntity) |
| 665 |
|
|
#define useForeignDTD (parser->m_useForeignDTD) |
| 666 |
|
|
#define paramEntityParsing (parser->m_paramEntityParsing) |
| 667 |
|
|
|
| 668 |
|
|
#define hash_secret_salt (parser->m_hash_secret_salt) |
| 669 |
|
|
|
| 670 |
|
|
|
| 671 |
|
|
XML_ParserCreate(const XML_Char *encodingName) |
| 672 |
|
|
|
| 673 |
|
|
return XML_ParserCreate_MM(encodingName, NULL, NULL); |
|
|
inline |
PyExpat_XML_ParserCreate_MM can be inlined into PyExpat_XML_ParserCreate with cost=5 (threshold=375) |
PyExpat_XML_ParserCreate |
|
|
inline |
PyExpat_XML_ParserCreate_MM inlined into PyExpat_XML_ParserCreate |
PyExpat_XML_ParserCreate |
| 674 |
|
|
|
| 675 |
|
|
|
| 676 |
|
|
|
| 677 |
|
|
XML_ParserCreateNS(const XML_Char *encodingName, XML_Char nsSep) |
| 678 |
|
|
|
| 679 |
|
|
|
| 680 |
|
|
|
| 681 |
|
|
return XML_ParserCreate_MM(encodingName, NULL, tmp); |
|
|
inline |
PyExpat_XML_ParserCreate_MM can be inlined into PyExpat_XML_ParserCreateNS with cost=5 (threshold=375) |
PyExpat_XML_ParserCreateNS |
|
|
inline |
PyExpat_XML_ParserCreate_MM inlined into PyExpat_XML_ParserCreateNS |
PyExpat_XML_ParserCreateNS |
| 682 |
|
|
|
| 683 |
|
|
|
| 684 |
|
|
static const XML_Char implicitContext[] = { |
| 685 |
|
|
ASCII_x, ASCII_m, ASCII_l, ASCII_EQUALS, ASCII_h, ASCII_t, ASCII_t, ASCII_p, |
| 686 |
|
|
ASCII_COLON, ASCII_SLASH, ASCII_SLASH, ASCII_w, ASCII_w, ASCII_w, |
| 687 |
|
|
ASCII_PERIOD, ASCII_w, ASCII_3, ASCII_PERIOD, ASCII_o, ASCII_r, ASCII_g, |
| 688 |
|
|
ASCII_SLASH, ASCII_X, ASCII_M, ASCII_L, ASCII_SLASH, ASCII_1, ASCII_9, |
| 689 |
|
|
ASCII_9, ASCII_8, ASCII_SLASH, ASCII_n, ASCII_a, ASCII_m, ASCII_e, |
| 690 |
|
|
ASCII_s, ASCII_p, ASCII_a, ASCII_c, ASCII_e, '\0' |
| 691 |
|
|
|
| 692 |
|
|
|
| 693 |
|
|
|
| 694 |
|
|
generate_hash_secret_salt(void) |
| 695 |
|
|
|
| 696 |
|
|
unsigned int seed = time(NULL) % UINT_MAX; |
|
|
inline |
time will not be inlined into generate_hash_secret_salt because its definition is unavailable |
generate_hash_secret_salt |
| 697 |
|
|
|
|
|
inline |
srand will not be inlined into generate_hash_secret_salt because its definition is unavailable |
generate_hash_secret_salt |
| 698 |
|
|
|
|
|
inline |
rand will not be inlined into generate_hash_secret_salt because its definition is unavailable |
generate_hash_secret_salt |
| 699 |
|
|
|
| 700 |
|
|
|
| 701 |
|
|
static XML_Bool /* only valid for root parser */ |
| 702 |
|
|
startParsing(XML_Parser parser) |
| 703 |
|
|
|
| 704 |
|
|
/* hash functions must be initialized before setContext() is called */ |
| 705 |
|
|
if (hash_secret_salt == 0) |
| 706 |
|
|
hash_secret_salt = generate_hash_secret_salt(); |
|
|
inline |
generate_hash_secret_salt can be inlined into startParsing with cost=-14920 (threshold=375) |
startParsing |
|
|
inline |
generate_hash_secret_salt inlined into startParsing |
startParsing |
| 707 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
startParsing |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
| 708 |
|
|
/* implicit context only set for root parser, since child |
| 709 |
|
|
parsers (i.e. external entity parsers) will inherit it |
| 710 |
|
|
|
| 711 |
|
|
return setContext(parser, implicitContext); |
|
|
inline |
setContext too costly to inline (cost=645, threshold=625) |
startParsing |
|
|
inline |
setContext will not be inlined into startParsing |
startParsing |
|
|
inline |
setContext too costly to inline (cost=645, threshold=625) |
PyExpat_XML_ParseBuffer |
|
|
inline |
setContext will not be inlined into PyExpat_XML_ParseBuffer |
PyExpat_XML_ParseBuffer |
|
|
inline |
setContext too costly to inline (cost=645, threshold=625) |
PyExpat_XML_Parse |
|
|
inline |
setContext will not be inlined into PyExpat_XML_Parse |
PyExpat_XML_Parse |
| 712 |
|
|
|
| 713 |
|
|
|
| 714 |
|
|
|
| 715 |
|
|
|
| 716 |
|
|
|
| 717 |
|
|
XML_ParserCreate_MM(const XML_Char *encodingName, |
| 718 |
|
|
const XML_Memory_Handling_Suite *memsuite, |
| 719 |
|
|
|
| 720 |
|
|
|
| 721 |
|
|
return parserCreate(encodingName, memsuite, nameSep, NULL); |
|
|
inline |
parserCreate too costly to inline (cost=630, threshold=625) |
PyExpat_XML_ParserCreate_MM |
|
|
inline |
parserCreate will not be inlined into PyExpat_XML_ParserCreate_MM |
PyExpat_XML_ParserCreate_MM |
|
|
inline |
parserCreate too costly to inline (cost=585, threshold=250) |
PyExpat_XML_ParserCreate |
|
|
inline |
parserCreate will not be inlined into PyExpat_XML_ParserCreate |
PyExpat_XML_ParserCreate |
|
|
inline |
parserCreate too costly to inline (cost=595, threshold=250) |
PyExpat_XML_ParserCreateNS |
|
|
inline |
parserCreate will not be inlined into PyExpat_XML_ParserCreateNS |
PyExpat_XML_ParserCreateNS |
| 722 |
|
|
|
| 723 |
|
|
|
| 724 |
|
|
|
| 725 |
|
|
parserCreate(const XML_Char *encodingName, |
| 726 |
|
|
const XML_Memory_Handling_Suite *memsuite, |
| 727 |
|
|
|
| 728 |
|
|
|
| 729 |
|
|
|
| 730 |
|
|
|
| 731 |
|
|
|
| 732 |
|
|
|
| 733 |
|
|
XML_Memory_Handling_Suite *mtemp; |
| 734 |
|
|
|
| 735 |
|
|
memsuite->malloc_fcn(sizeof(struct XML_ParserStruct)); |
| 736 |
|
|
|
| 737 |
|
|
mtemp = (XML_Memory_Handling_Suite *)&(parser->m_mem); |
| 738 |
|
|
mtemp->malloc_fcn = memsuite->malloc_fcn; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
parserCreate |
| 739 |
|
|
mtemp->realloc_fcn = memsuite->realloc_fcn; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
parserCreate |
| 740 |
|
|
mtemp->free_fcn = memsuite->free_fcn; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
parserCreate |
| 741 |
|
|
|
| 742 |
|
|
|
| 743 |
|
|
|
| 744 |
|
|
XML_Memory_Handling_Suite *mtemp; |
| 745 |
|
|
parser = (XML_Parser)malloc(sizeof(struct XML_ParserStruct)); |
|
|
inline |
malloc will not be inlined into parserCreate because its definition is unavailable |
parserCreate |
| 746 |
|
|
|
| 747 |
|
|
mtemp = (XML_Memory_Handling_Suite *)&(parser->m_mem); |
| 748 |
|
|
mtemp->malloc_fcn = malloc; |
| 749 |
|
|
mtemp->realloc_fcn = realloc; |
| 750 |
|
|
|
| 751 |
|
|
|
| 752 |
|
|
|
| 753 |
|
|
|
| 754 |
|
|
|
| 755 |
|
|
|
| 756 |
|
|
|
| 757 |
|
|
|
| 758 |
|
|
|
| 759 |
|
|
|
| 760 |
|
|
attsSize = INIT_ATTS_SIZE; |
| 761 |
|
|
atts = (ATTRIBUTE *)MALLOC(attsSize * sizeof(ATTRIBUTE)); |
|
|
gvn |
load eliminated by PRE |
parserCreate |
| 762 |
|
|
|
| 763 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
parserCreate |
| 764 |
|
|
|
| 765 |
|
|
|
| 766 |
|
|
|
| 767 |
|
|
attInfo = (XML_AttrInfo*)MALLOC(attsSize * sizeof(XML_AttrInfo)); |
| 768 |
|
|
|
| 769 |
|
|
|
| 770 |
|
|
|
| 771 |
|
|
|
| 772 |
|
|
|
| 773 |
|
|
|
| 774 |
|
|
dataBuf = (XML_Char *)MALLOC(INIT_DATA_BUF_SIZE * sizeof(XML_Char)); |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
parserCreate |
| 775 |
|
|
|
| 776 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
parserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
parserCreate |
| 777 |
|
|
|
| 778 |
|
|
|
| 779 |
|
|
|
| 780 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
parserCreate |
| 781 |
|
|
|
| 782 |
|
|
|
| 783 |
|
|
dataBufEnd = dataBuf + INIT_DATA_BUF_SIZE; |
| 784 |
|
|
|
| 785 |
|
|
|
| 786 |
|
|
|
| 787 |
|
|
|
| 788 |
|
|
_dtd = dtdCreate(&parser->m_mem); |
|
|
inline |
dtdCreate can be inlined into parserCreate with cost=-14860 (threshold=250) |
parserCreate |
|
|
inline |
dtdCreate inlined into parserCreate |
parserCreate |
| 789 |
|
|
|
| 790 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
parserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
parserCreate |
| 791 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
parserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
parserCreate |
| 792 |
|
|
|
| 793 |
|
|
|
| 794 |
|
|
|
| 795 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
parserCreate |
| 796 |
|
|
|
| 797 |
|
|
|
| 798 |
|
|
|
| 799 |
|
|
|
| 800 |
|
|
|
| 801 |
|
|
|
| 802 |
|
|
freeInternalEntities = NULL; |
| 803 |
|
|
|
| 804 |
|
|
|
| 805 |
|
|
|
| 806 |
|
|
|
| 807 |
|
|
unknownEncodingHandler = NULL; |
| 808 |
|
|
unknownEncodingHandlerData = NULL; |
| 809 |
|
|
|
| 810 |
|
|
namespaceSeparator = ASCII_EXCL; |
| 811 |
|
|
|
| 812 |
|
|
|
| 813 |
|
|
|
| 814 |
|
|
|
| 815 |
|
|
|
| 816 |
|
|
|
| 817 |
|
|
|
| 818 |
|
|
poolInit(&tempPool, &(parser->m_mem)); |
|
|
inline |
poolInit can be inlined into parserCreate with cost=-30 (threshold=375) |
parserCreate |
|
|
inline |
poolInit inlined into parserCreate |
parserCreate |
| 819 |
|
|
poolInit(&temp2Pool, &(parser->m_mem)); |
|
|
inline |
poolInit can be inlined into parserCreate with cost=-15030 (threshold=375) |
parserCreate |
|
|
inline |
poolInit inlined into parserCreate |
parserCreate |
| 820 |
|
|
parserInit(parser, encodingName); |
|
|
inline |
parserInit too costly to inline (cost=310, threshold=250) |
parserCreate |
|
|
inline |
parserInit will not be inlined into parserCreate |
parserCreate |
| 821 |
|
|
|
| 822 |
|
|
if (encodingName && !protocolEncodingName) { |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
parserCreate |
| 823 |
|
|
|
|
|
inline |
PyExpat_XML_ParserFree too costly to inline (cost=630, threshold=625) |
parserCreate |
|
|
inline |
PyExpat_XML_ParserFree will not be inlined into parserCreate |
parserCreate |
| 824 |
|
|
|
| 825 |
|
|
|
| 826 |
|
|
|
| 827 |
|
|
|
| 828 |
|
|
|
| 829 |
|
|
internalEncoding = XmlGetInternalEncodingNS(); |
|
|
inline |
PyExpat_XmlGetUtf8InternalEncodingNS will not be inlined into parserCreate because its definition is unavailable |
parserCreate |
| 830 |
|
|
namespaceSeparator = *nameSep; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
parserCreate |
| 831 |
|
|
|
| 832 |
|
|
|
| 833 |
|
|
internalEncoding = XmlGetInternalEncoding(); |
|
|
inline |
PyExpat_XmlGetUtf8InternalEncoding will not be inlined into parserCreate because its definition is unavailable |
parserCreate |
| 834 |
|
|
|
| 835 |
|
|
|
| 836 |
|
|
|
| 837 |
|
|
|
| 838 |
|
|
|
| 839 |
|
|
|
| 840 |
|
|
parserInit(XML_Parser parser, const XML_Char *encodingName) |
| 841 |
|
|
|
| 842 |
|
|
processor = prologInitProcessor; |
| 843 |
|
|
XmlPrologStateInit(&prologState); |
|
|
inline |
PyExpat_XmlPrologStateInit will not be inlined into parserInit because its definition is unavailable |
parserInit |
| 844 |
|
|
protocolEncodingName = (encodingName != NULL |
| 845 |
|
|
? poolCopyString(&tempPool, encodingName) |
|
|
inline |
poolCopyString can be inlined into parserInit with cost=75 (threshold=250) |
parserInit |
|
|
inline |
poolCopyString inlined into parserInit |
parserInit |
| 846 |
|
|
|
| 847 |
|
|
|
| 848 |
|
|
XmlInitEncoding(&initEncoding, &encoding, 0); |
|
|
inline |
PyExpat_XmlInitEncoding will not be inlined into parserInit because its definition is unavailable |
parserInit |
| 849 |
|
|
|
| 850 |
|
|
|
| 851 |
|
|
startElementHandler = NULL; |
| 852 |
|
|
endElementHandler = NULL; |
| 853 |
|
|
characterDataHandler = NULL; |
| 854 |
|
|
processingInstructionHandler = NULL; |
| 855 |
|
|
|
| 856 |
|
|
startCdataSectionHandler = NULL; |
| 857 |
|
|
endCdataSectionHandler = NULL; |
| 858 |
|
|
|
| 859 |
|
|
startDoctypeDeclHandler = NULL; |
| 860 |
|
|
endDoctypeDeclHandler = NULL; |
| 861 |
|
|
unparsedEntityDeclHandler = NULL; |
| 862 |
|
|
notationDeclHandler = NULL; |
| 863 |
|
|
startNamespaceDeclHandler = NULL; |
| 864 |
|
|
endNamespaceDeclHandler = NULL; |
| 865 |
|
|
notStandaloneHandler = NULL; |
| 866 |
|
|
externalEntityRefHandler = NULL; |
| 867 |
|
|
externalEntityRefHandlerArg = parser; |
| 868 |
|
|
skippedEntityHandler = NULL; |
| 869 |
|
|
elementDeclHandler = NULL; |
| 870 |
|
|
attlistDeclHandler = NULL; |
| 871 |
|
|
entityDeclHandler = NULL; |
| 872 |
|
|
|
| 873 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
parserInit |
| 874 |
|
|
|
| 875 |
|
|
|
| 876 |
|
|
|
| 877 |
|
|
|
| 878 |
|
|
|
| 879 |
|
|
|
| 880 |
|
|
|
| 881 |
|
|
|
| 882 |
|
|
|
| 883 |
|
|
declAttributeType = NULL; |
| 884 |
|
|
|
| 885 |
|
|
declNotationPublicId = NULL; |
| 886 |
|
|
declAttributeIsCdata = XML_FALSE; |
| 887 |
|
|
declAttributeIsId = XML_FALSE; |
| 888 |
|
|
memset(&position, 0, sizeof(POSITION)); |
| 889 |
|
|
errorCode = XML_ERROR_NONE; |
| 890 |
|
|
|
| 891 |
|
|
|
| 892 |
|
|
|
| 893 |
|
|
openInternalEntities = NULL; |
| 894 |
|
|
defaultExpandInternalEntities = XML_TRUE; |
| 895 |
|
|
|
| 896 |
|
|
|
| 897 |
|
|
inheritedBindings = NULL; |
| 898 |
|
|
|
| 899 |
|
|
unknownEncodingMem = NULL; |
| 900 |
|
|
unknownEncodingRelease = NULL; |
| 901 |
|
|
unknownEncodingData = NULL; |
| 902 |
|
|
|
| 903 |
|
|
ps_parsing = XML_INITIALIZED; |
| 904 |
|
|
|
| 905 |
|
|
isParamEntity = XML_FALSE; |
| 906 |
|
|
useForeignDTD = XML_FALSE; |
| 907 |
|
|
paramEntityParsing = XML_PARAM_ENTITY_PARSING_NEVER; |
| 908 |
|
|
|
| 909 |
|
|
|
| 910 |
|
|
|
| 911 |
|
|
|
| 912 |
|
|
/* moves list of bindings to freeBindingList */ |
| 913 |
|
|
|
| 914 |
|
|
moveToFreeBindingList(XML_Parser parser, BINDING *bindings) |
| 915 |
|
|
|
| 916 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ParserReset |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserReset |
| 917 |
|
|
|
| 918 |
|
|
bindings = bindings->nextTagBinding; |
| 919 |
|
|
b->nextTagBinding = freeBindingList; |
|
|
licm |
hosting getelementptr |
moveToFreeBindingList |
|
|
licm |
hosting bitcast |
moveToFreeBindingList |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
moveToFreeBindingList |
|
|
gvn |
load eliminated by PRE |
moveToFreeBindingList |
| 920 |
|
|
|
|
|
licm |
Moving accesses to memory location out of the loop |
moveToFreeBindingList |
| 921 |
|
|
|
| 922 |
|
|
|
| 923 |
|
|
|
| 924 |
|
|
|
| 925 |
|
|
XML_ParserReset(XML_Parser parser, const XML_Char *encodingName) |
| 926 |
|
|
|
| 927 |
|
|
|
| 928 |
|
|
OPEN_INTERNAL_ENTITY *openEntityList; |
| 929 |
|
|
|
| 930 |
|
|
|
| 931 |
|
|
/* move tagStack to freeTagList */ |
| 932 |
|
|
|
| 933 |
|
|
|
| 934 |
|
|
|
| 935 |
|
|
|
| 936 |
|
|
tag->parent = freeTagList; |
|
|
licm |
hosting getelementptr |
PyExpat_XML_ParserReset |
|
|
licm |
hosting bitcast |
PyExpat_XML_ParserReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserReset |
|
|
gvn |
load eliminated by PRE |
PyExpat_XML_ParserReset |
| 937 |
|
|
moveToFreeBindingList(parser, tag->bindings); |
|
|
inline |
moveToFreeBindingList can be inlined into PyExpat_XML_ParserReset with cost=0 (threshold=250) |
PyExpat_XML_ParserReset |
|
|
inline |
moveToFreeBindingList inlined into PyExpat_XML_ParserReset |
PyExpat_XML_ParserReset |
| 938 |
|
|
|
| 939 |
|
|
|
|
|
licm |
Moving accesses to memory location out of the loop |
PyExpat_XML_ParserReset |
| 940 |
|
|
|
| 941 |
|
|
/* move openInternalEntities to freeInternalEntities */ |
| 942 |
|
|
openEntityList = openInternalEntities; |
| 943 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ParserReset |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserReset |
| 944 |
|
|
OPEN_INTERNAL_ENTITY *openEntity = openEntityList; |
| 945 |
|
|
openEntityList = openEntity->next; |
| 946 |
|
|
openEntity->next = freeInternalEntities; |
|
|
licm |
hosting getelementptr |
PyExpat_XML_ParserReset |
|
|
licm |
hosting bitcast |
PyExpat_XML_ParserReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserReset |
|
|
gvn |
load eliminated by PRE |
PyExpat_XML_ParserReset |
| 947 |
|
|
freeInternalEntities = openEntity; |
|
|
licm |
Moving accesses to memory location out of the loop |
PyExpat_XML_ParserReset |
| 948 |
|
|
|
| 949 |
|
|
moveToFreeBindingList(parser, inheritedBindings); |
|
|
inline |
moveToFreeBindingList can be inlined into PyExpat_XML_ParserReset with cost=-15000 (threshold=250) |
PyExpat_XML_ParserReset |
|
|
inline |
moveToFreeBindingList inlined into PyExpat_XML_ParserReset |
PyExpat_XML_ParserReset |
| 950 |
|
|
FREE(unknownEncodingMem); |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by store |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by store |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by store |
PyExpat_XML_ParserReset |
| 951 |
|
|
if (unknownEncodingRelease) |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
| 952 |
|
|
unknownEncodingRelease(unknownEncodingData); |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
| 953 |
|
|
|
|
|
inline |
poolClear can be inlined into PyExpat_XML_ParserReset with cost=30 (threshold=250) |
PyExpat_XML_ParserReset |
|
|
inline |
poolClear inlined into PyExpat_XML_ParserReset |
PyExpat_XML_ParserReset |
| 954 |
|
|
|
|
|
inline |
poolClear can be inlined into PyExpat_XML_ParserReset with cost=30 (threshold=250) |
PyExpat_XML_ParserReset |
|
|
inline |
poolClear inlined into PyExpat_XML_ParserReset |
PyExpat_XML_ParserReset |
| 955 |
|
|
parserInit(parser, encodingName); |
|
|
inline |
parserInit too costly to inline (cost=310, threshold=250) |
PyExpat_XML_ParserReset |
|
|
inline |
parserInit will not be inlined into PyExpat_XML_ParserReset |
PyExpat_XML_ParserReset |
| 956 |
|
|
dtdReset(_dtd, &parser->m_mem); |
|
|
inline |
dtdReset can be inlined into PyExpat_XML_ParserReset with cost=-14310 (threshold=250) |
PyExpat_XML_ParserReset |
|
|
inline |
dtdReset inlined into PyExpat_XML_ParserReset |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
| 957 |
|
|
|
| 958 |
|
|
|
| 959 |
|
|
|
| 960 |
|
|
|
| 961 |
|
|
XML_SetEncoding(XML_Parser parser, const XML_Char *encodingName) |
| 962 |
|
|
|
| 963 |
|
|
/* Block after XML_Parse()/XML_ParseBuffer() has been called. |
| 964 |
|
|
XXX There's no way for the caller to determine which of the |
| 965 |
|
|
XXX possible error cases caused the XML_STATUS_ERROR return. |
| 966 |
|
|
|
| 967 |
|
|
if (ps_parsing == XML_PARSING || ps_parsing == XML_SUSPENDED) |
| 968 |
|
|
|
| 969 |
|
|
if (encodingName == NULL) |
| 970 |
|
|
protocolEncodingName = NULL; |
| 971 |
|
|
|
| 972 |
|
|
protocolEncodingName = poolCopyString(&tempPool, encodingName); |
|
|
inline |
poolCopyString can be inlined into PyExpat_XML_SetEncoding with cost=75 (threshold=250) |
PyExpat_XML_SetEncoding |
|
|
inline |
poolCopyString inlined into PyExpat_XML_SetEncoding |
PyExpat_XML_SetEncoding |
| 973 |
|
|
if (!protocolEncodingName) |
| 974 |
|
|
|
| 975 |
|
|
|
| 976 |
|
|
|
| 977 |
|
|
|
| 978 |
|
|
|
| 979 |
|
|
|
| 980 |
|
|
XML_ExternalEntityParserCreate(XML_Parser oldParser, |
| 981 |
|
|
|
| 982 |
|
|
const XML_Char *encodingName) |
| 983 |
|
|
|
| 984 |
|
|
XML_Parser parser = oldParser; |
| 985 |
|
|
|
| 986 |
|
|
|
| 987 |
|
|
XML_StartElementHandler oldStartElementHandler = startElementHandler; |
| 988 |
|
|
XML_EndElementHandler oldEndElementHandler = endElementHandler; |
| 989 |
|
|
XML_CharacterDataHandler oldCharacterDataHandler = characterDataHandler; |
| 990 |
|
|
XML_ProcessingInstructionHandler oldProcessingInstructionHandler |
| 991 |
|
|
= processingInstructionHandler; |
| 992 |
|
|
XML_CommentHandler oldCommentHandler = commentHandler; |
| 993 |
|
|
XML_StartCdataSectionHandler oldStartCdataSectionHandler |
| 994 |
|
|
= startCdataSectionHandler; |
| 995 |
|
|
XML_EndCdataSectionHandler oldEndCdataSectionHandler |
| 996 |
|
|
= endCdataSectionHandler; |
| 997 |
|
|
XML_DefaultHandler oldDefaultHandler = defaultHandler; |
| 998 |
|
|
XML_UnparsedEntityDeclHandler oldUnparsedEntityDeclHandler |
| 999 |
|
|
= unparsedEntityDeclHandler; |
| 1000 |
|
|
XML_NotationDeclHandler oldNotationDeclHandler = notationDeclHandler; |
| 1001 |
|
|
XML_StartNamespaceDeclHandler oldStartNamespaceDeclHandler |
| 1002 |
|
|
= startNamespaceDeclHandler; |
| 1003 |
|
|
XML_EndNamespaceDeclHandler oldEndNamespaceDeclHandler |
| 1004 |
|
|
= endNamespaceDeclHandler; |
| 1005 |
|
|
XML_NotStandaloneHandler oldNotStandaloneHandler = notStandaloneHandler; |
| 1006 |
|
|
XML_ExternalEntityRefHandler oldExternalEntityRefHandler |
| 1007 |
|
|
= externalEntityRefHandler; |
| 1008 |
|
|
XML_SkippedEntityHandler oldSkippedEntityHandler = skippedEntityHandler; |
| 1009 |
|
|
XML_UnknownEncodingHandler oldUnknownEncodingHandler |
| 1010 |
|
|
= unknownEncodingHandler; |
| 1011 |
|
|
XML_ElementDeclHandler oldElementDeclHandler = elementDeclHandler; |
| 1012 |
|
|
XML_AttlistDeclHandler oldAttlistDeclHandler = attlistDeclHandler; |
| 1013 |
|
|
XML_EntityDeclHandler oldEntityDeclHandler = entityDeclHandler; |
| 1014 |
|
|
XML_XmlDeclHandler oldXmlDeclHandler = xmlDeclHandler; |
| 1015 |
|
|
ELEMENT_TYPE * oldDeclElementType = declElementType; |
| 1016 |
|
|
|
| 1017 |
|
|
void *oldUserData = userData; |
| 1018 |
|
|
void *oldHandlerArg = handlerArg; |
| 1019 |
|
|
XML_Bool oldDefaultExpandInternalEntities = defaultExpandInternalEntities; |
| 1020 |
|
|
XML_Parser oldExternalEntityRefHandlerArg = externalEntityRefHandlerArg; |
| 1021 |
|
|
|
| 1022 |
|
|
enum XML_ParamEntityParsing oldParamEntityParsing = paramEntityParsing; |
| 1023 |
|
|
int oldInEntityValue = prologState.inEntityValue; |
| 1024 |
|
|
|
| 1025 |
|
|
XML_Bool oldns_triplets = ns_triplets; |
| 1026 |
|
|
/* Note that the new parser shares the same hash secret as the old |
| 1027 |
|
|
parser, so that dtdCopy and copyEntityTable can lookup values |
| 1028 |
|
|
from hash tables associated with either parser without us having |
| 1029 |
|
|
to worry which hash secrets each table has. |
| 1030 |
|
|
|
| 1031 |
|
|
unsigned long oldhash_secret_salt = hash_secret_salt; |
| 1032 |
|
|
|
| 1033 |
|
|
|
| 1034 |
|
|
|
| 1035 |
|
|
|
| 1036 |
|
|
|
| 1037 |
|
|
|
| 1038 |
|
|
/* Note that the magical uses of the pre-processor to make field |
| 1039 |
|
|
access look more like C++ require that `parser' be overwritten |
| 1040 |
|
|
here. This makes this function more painful to follow than it |
| 1041 |
|
|
|
| 1042 |
|
|
|
| 1043 |
|
|
|
| 1044 |
|
|
|
| 1045 |
|
|
*tmp = namespaceSeparator; |
| 1046 |
|
|
parser = parserCreate(encodingName, &parser->m_mem, tmp, newDtd); |
|
|
inline |
parserCreate too costly to inline (cost=630, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
parserCreate will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 1047 |
|
|
|
| 1048 |
|
|
|
| 1049 |
|
|
parser = parserCreate(encodingName, &parser->m_mem, NULL, newDtd); |
|
|
inline |
parserCreate too costly to inline (cost=660, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
parserCreate will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 1050 |
|
|
|
| 1051 |
|
|
|
| 1052 |
|
|
|
| 1053 |
|
|
|
| 1054 |
|
|
|
| 1055 |
|
|
startElementHandler = oldStartElementHandler; |
| 1056 |
|
|
endElementHandler = oldEndElementHandler; |
| 1057 |
|
|
characterDataHandler = oldCharacterDataHandler; |
| 1058 |
|
|
processingInstructionHandler = oldProcessingInstructionHandler; |
| 1059 |
|
|
commentHandler = oldCommentHandler; |
| 1060 |
|
|
startCdataSectionHandler = oldStartCdataSectionHandler; |
| 1061 |
|
|
endCdataSectionHandler = oldEndCdataSectionHandler; |
| 1062 |
|
|
defaultHandler = oldDefaultHandler; |
| 1063 |
|
|
unparsedEntityDeclHandler = oldUnparsedEntityDeclHandler; |
| 1064 |
|
|
notationDeclHandler = oldNotationDeclHandler; |
| 1065 |
|
|
startNamespaceDeclHandler = oldStartNamespaceDeclHandler; |
| 1066 |
|
|
endNamespaceDeclHandler = oldEndNamespaceDeclHandler; |
| 1067 |
|
|
notStandaloneHandler = oldNotStandaloneHandler; |
| 1068 |
|
|
externalEntityRefHandler = oldExternalEntityRefHandler; |
| 1069 |
|
|
skippedEntityHandler = oldSkippedEntityHandler; |
| 1070 |
|
|
unknownEncodingHandler = oldUnknownEncodingHandler; |
| 1071 |
|
|
elementDeclHandler = oldElementDeclHandler; |
| 1072 |
|
|
attlistDeclHandler = oldAttlistDeclHandler; |
| 1073 |
|
|
entityDeclHandler = oldEntityDeclHandler; |
| 1074 |
|
|
xmlDeclHandler = oldXmlDeclHandler; |
| 1075 |
|
|
declElementType = oldDeclElementType; |
| 1076 |
|
|
|
| 1077 |
|
|
if (oldUserData == oldHandlerArg) |
| 1078 |
|
|
|
| 1079 |
|
|
|
| 1080 |
|
|
|
| 1081 |
|
|
if (oldExternalEntityRefHandlerArg != oldParser) |
| 1082 |
|
|
externalEntityRefHandlerArg = oldExternalEntityRefHandlerArg; |
| 1083 |
|
|
defaultExpandInternalEntities = oldDefaultExpandInternalEntities; |
| 1084 |
|
|
ns_triplets = oldns_triplets; |
| 1085 |
|
|
hash_secret_salt = oldhash_secret_salt; |
| 1086 |
|
|
parentParser = oldParser; |
| 1087 |
|
|
|
| 1088 |
|
|
paramEntityParsing = oldParamEntityParsing; |
| 1089 |
|
|
prologState.inEntityValue = oldInEntityValue; |
| 1090 |
|
|
|
| 1091 |
|
|
|
| 1092 |
|
|
if (!dtdCopy(oldParser, _dtd, oldDtd, &parser->m_mem) |
|
|
inline |
dtdCopy can be inlined into PyExpat_XML_ExternalEntityParserCreate with cost=-12545 (threshold=250) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
dtdCopy inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 1093 |
|
|
|| !setContext(parser, context)) { |
|
|
inline |
setContext too costly to inline (cost=645, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
setContext will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 1094 |
|
|
|
|
|
inline |
PyExpat_XML_ParserFree too costly to inline (cost=630, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
PyExpat_XML_ParserFree will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 1095 |
|
|
|
| 1096 |
|
|
|
| 1097 |
|
|
processor = externalEntityInitProcessor; |
| 1098 |
|
|
|
| 1099 |
|
|
|
| 1100 |
|
|
|
| 1101 |
|
|
/* The DTD instance referenced by _dtd is shared between the document's |
| 1102 |
|
|
root parser and external PE parsers, therefore one does not need to |
| 1103 |
|
|
call setContext. In addition, one also *must* not call setContext, |
| 1104 |
|
|
because this would overwrite existing prefix->binding pointers in |
| 1105 |
|
|
_dtd with ones that get destroyed with the external PE parser. |
| 1106 |
|
|
This would leave those prefixes with dangling pointers. |
| 1107 |
|
|
|
| 1108 |
|
|
isParamEntity = XML_TRUE; |
| 1109 |
|
|
XmlPrologStateInitExternalEntity(&prologState); |
|
|
inline |
PyExpat_XmlPrologStateInitExternalEntity will not be inlined into PyExpat_XML_ExternalEntityParserCreate because its definition is unavailable |
PyExpat_XML_ExternalEntityParserCreate |
| 1110 |
|
|
processor = externalParEntInitProcessor; |
| 1111 |
|
|
|
| 1112 |
|
|
|
| 1113 |
|
|
|
| 1114 |
|
|
|
| 1115 |
|
|
|
| 1116 |
|
|
|
| 1117 |
|
|
destroyBindings(BINDING *bindings, XML_Parser parser) |
| 1118 |
|
|
|
| 1119 |
|
|
|
| 1120 |
|
|
|
| 1121 |
|
|
|
| 1122 |
|
|
|
| 1123 |
|
|
bindings = b->nextTagBinding; |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ParserFree |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserFree |
| 1124 |
|
|
|
|
|
licm |
hosting getelementptr |
destroyBindings |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
destroyBindings |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
destroyBindings |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1125 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
destroyBindings |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
destroyBindings |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1126 |
|
|
|
| 1127 |
|
|
|
| 1128 |
|
|
|
| 1129 |
|
|
|
| 1130 |
|
|
XML_ParserFree(XML_Parser parser) |
| 1131 |
|
|
|
| 1132 |
|
|
|
| 1133 |
|
|
OPEN_INTERNAL_ENTITY *entityList; |
| 1134 |
|
|
|
| 1135 |
|
|
|
| 1136 |
|
|
/* free tagStack and freeTagList */ |
| 1137 |
|
|
|
| 1138 |
|
|
|
| 1139 |
|
|
|
| 1140 |
|
|
|
| 1141 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.tag* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1142 |
|
|
|
| 1143 |
|
|
|
| 1144 |
|
|
|
| 1145 |
|
|
|
| 1146 |
|
|
|
| 1147 |
|
|
tagList = tagList->parent; |
| 1148 |
|
|
|
|
|
licm |
hosting getelementptr |
PyExpat_XML_ParserFree |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1149 |
|
|
destroyBindings(p->bindings, parser); |
|
|
inline |
destroyBindings can be inlined into PyExpat_XML_ParserFree with cost=20 (threshold=250) |
PyExpat_XML_ParserFree |
|
|
inline |
destroyBindings inlined into PyExpat_XML_ParserFree |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1150 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1151 |
|
|
|
| 1152 |
|
|
/* free openInternalEntities and freeInternalEntities */ |
| 1153 |
|
|
entityList = openInternalEntities; |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1154 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
PyExpat_XML_ParserFree |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserFree |
| 1155 |
|
|
OPEN_INTERNAL_ENTITY *openEntity; |
| 1156 |
|
|
if (entityList == NULL) { |
| 1157 |
|
|
if (freeInternalEntities == NULL) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1158 |
|
|
|
| 1159 |
|
|
entityList = freeInternalEntities; |
| 1160 |
|
|
freeInternalEntities = NULL; |
| 1161 |
|
|
|
| 1162 |
|
|
|
| 1163 |
|
|
entityList = entityList->next; |
| 1164 |
|
|
|
|
|
licm |
hosting getelementptr |
PyExpat_XML_ParserFree |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1165 |
|
|
|
| 1166 |
|
|
|
| 1167 |
|
|
destroyBindings(freeBindingList, parser); |
|
|
inline |
destroyBindings can be inlined into PyExpat_XML_ParserFree with cost=20 (threshold=250) |
PyExpat_XML_ParserFree |
|
|
inline |
destroyBindings inlined into PyExpat_XML_ParserFree |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1168 |
|
|
destroyBindings(inheritedBindings, parser); |
|
|
inline |
destroyBindings can be inlined into PyExpat_XML_ParserFree with cost=-14980 (threshold=250) |
PyExpat_XML_ParserFree |
|
|
inline |
destroyBindings inlined into PyExpat_XML_ParserFree |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1169 |
|
|
|
|
|
inline |
poolDestroy can be inlined into PyExpat_XML_ParserFree with cost=65 (threshold=250) |
PyExpat_XML_ParserFree |
|
|
inline |
poolDestroy inlined into PyExpat_XML_ParserFree |
PyExpat_XML_ParserFree |
| 1170 |
|
|
|
|
|
inline |
poolDestroy can be inlined into PyExpat_XML_ParserFree with cost=-14935 (threshold=250) |
PyExpat_XML_ParserFree |
|
|
inline |
poolDestroy inlined into PyExpat_XML_ParserFree |
PyExpat_XML_ParserFree |
| 1171 |
|
|
|
| 1172 |
|
|
/* external parameter entity parsers share the DTD structure |
| 1173 |
|
|
parser->m_dtd with the root parser, so we must not destroy it |
| 1174 |
|
|
|
| 1175 |
|
|
if (!isParamEntity && _dtd) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1176 |
|
|
|
| 1177 |
|
|
|
| 1178 |
|
|
|
| 1179 |
|
|
dtdDestroy(_dtd, (XML_Bool)!parentParser, &parser->m_mem); |
|
|
inline |
dtdDestroy can be inlined into PyExpat_XML_ParserFree with cost=-14230 (threshold=250) |
PyExpat_XML_ParserFree |
|
|
inline |
dtdDestroy inlined into PyExpat_XML_ParserFree |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1180 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1181 |
|
|
|
| 1182 |
|
|
|
| 1183 |
|
|
|
| 1184 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1185 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1186 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1187 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1188 |
|
|
FREE(unknownEncodingMem); |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1189 |
|
|
if (unknownEncodingRelease) |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1190 |
|
|
unknownEncodingRelease(unknownEncodingData); |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1191 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 1192 |
|
|
|
| 1193 |
|
|
|
| 1194 |
|
|
|
| 1195 |
|
|
XML_UseParserAsHandlerArg(XML_Parser parser) |
| 1196 |
|
|
|
| 1197 |
|
|
|
| 1198 |
|
|
|
| 1199 |
|
|
|
| 1200 |
|
|
|
| 1201 |
|
|
XML_UseForeignDTD(XML_Parser parser, XML_Bool useDTD) |
| 1202 |
|
|
|
| 1203 |
|
|
|
| 1204 |
|
|
/* block after XML_Parse()/XML_ParseBuffer() has been called */ |
| 1205 |
|
|
if (ps_parsing == XML_PARSING || ps_parsing == XML_SUSPENDED) |
| 1206 |
|
|
return XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING; |
| 1207 |
|
|
|
| 1208 |
|
|
|
| 1209 |
|
|
|
| 1210 |
|
|
return XML_ERROR_FEATURE_REQUIRES_XML_DTD; |
| 1211 |
|
|
|
| 1212 |
|
|
|
| 1213 |
|
|
|
| 1214 |
|
|
|
| 1215 |
|
|
XML_SetReturnNSTriplet(XML_Parser parser, int do_nst) |
| 1216 |
|
|
|
| 1217 |
|
|
/* block after XML_Parse()/XML_ParseBuffer() has been called */ |
| 1218 |
|
|
if (ps_parsing == XML_PARSING || ps_parsing == XML_SUSPENDED) |
| 1219 |
|
|
|
| 1220 |
|
|
ns_triplets = do_nst ? XML_TRUE : XML_FALSE; |
| 1221 |
|
|
|
| 1222 |
|
|
|
| 1223 |
|
|
|
| 1224 |
|
|
XML_SetUserData(XML_Parser parser, void *p) |
| 1225 |
|
|
|
| 1226 |
|
|
if (handlerArg == userData) |
| 1227 |
|
|
handlerArg = userData = p; |
| 1228 |
|
|
|
| 1229 |
|
|
|
| 1230 |
|
|
|
| 1231 |
|
|
|
| 1232 |
|
|
|
| 1233 |
|
|
XML_SetBase(XML_Parser parser, const XML_Char *p) |
| 1234 |
|
|
|
| 1235 |
|
|
|
| 1236 |
|
|
p = poolCopyString(&_dtd->pool, p); |
|
|
inline |
poolCopyString can be inlined into PyExpat_XML_SetBase with cost=-14925 (threshold=250) |
PyExpat_XML_SetBase |
|
|
inline |
poolCopyString inlined into PyExpat_XML_SetBase |
PyExpat_XML_SetBase |
| 1237 |
|
|
|
| 1238 |
|
|
|
| 1239 |
|
|
|
| 1240 |
|
|
|
| 1241 |
|
|
|
| 1242 |
|
|
|
| 1243 |
|
|
|
| 1244 |
|
|
|
| 1245 |
|
|
|
| 1246 |
|
|
|
| 1247 |
|
|
XML_GetBase(XML_Parser parser) |
| 1248 |
|
|
|
| 1249 |
|
|
|
| 1250 |
|
|
|
| 1251 |
|
|
|
| 1252 |
|
|
|
| 1253 |
|
|
XML_GetSpecifiedAttributeCount(XML_Parser parser) |
| 1254 |
|
|
|
| 1255 |
|
|
|
| 1256 |
|
|
|
| 1257 |
|
|
|
| 1258 |
|
|
|
| 1259 |
|
|
XML_GetIdAttributeIndex(XML_Parser parser) |
| 1260 |
|
|
|
| 1261 |
|
|
|
| 1262 |
|
|
|
| 1263 |
|
|
|
| 1264 |
|
|
|
| 1265 |
|
|
const XML_AttrInfo * XMLCALL |
| 1266 |
|
|
XML_GetAttributeInfo(XML_Parser parser) |
| 1267 |
|
|
|
| 1268 |
|
|
|
| 1269 |
|
|
|
| 1270 |
|
|
|
| 1271 |
|
|
|
| 1272 |
|
|
|
| 1273 |
|
|
XML_SetElementHandler(XML_Parser parser, |
| 1274 |
|
|
XML_StartElementHandler start, |
| 1275 |
|
|
XML_EndElementHandler end) |
| 1276 |
|
|
|
| 1277 |
|
|
startElementHandler = start; |
| 1278 |
|
|
|
| 1279 |
|
|
|
| 1280 |
|
|
|
| 1281 |
|
|
|
| 1282 |
|
|
XML_SetStartElementHandler(XML_Parser parser, |
| 1283 |
|
|
XML_StartElementHandler start) { |
| 1284 |
|
|
startElementHandler = start; |
| 1285 |
|
|
|
| 1286 |
|
|
|
| 1287 |
|
|
|
| 1288 |
|
|
XML_SetEndElementHandler(XML_Parser parser, |
| 1289 |
|
|
XML_EndElementHandler end) { |
| 1290 |
|
|
|
| 1291 |
|
|
|
| 1292 |
|
|
|
| 1293 |
|
|
|
| 1294 |
|
|
XML_SetCharacterDataHandler(XML_Parser parser, |
| 1295 |
|
|
XML_CharacterDataHandler handler) |
| 1296 |
|
|
|
| 1297 |
|
|
characterDataHandler = handler; |
| 1298 |
|
|
|
| 1299 |
|
|
|
| 1300 |
|
|
|
| 1301 |
|
|
XML_SetProcessingInstructionHandler(XML_Parser parser, |
| 1302 |
|
|
XML_ProcessingInstructionHandler handler) |
| 1303 |
|
|
|
| 1304 |
|
|
processingInstructionHandler = handler; |
| 1305 |
|
|
|
| 1306 |
|
|
|
| 1307 |
|
|
|
| 1308 |
|
|
XML_SetCommentHandler(XML_Parser parser, |
| 1309 |
|
|
XML_CommentHandler handler) |
| 1310 |
|
|
|
| 1311 |
|
|
commentHandler = handler; |
| 1312 |
|
|
|
| 1313 |
|
|
|
| 1314 |
|
|
|
| 1315 |
|
|
XML_SetCdataSectionHandler(XML_Parser parser, |
| 1316 |
|
|
XML_StartCdataSectionHandler start, |
| 1317 |
|
|
XML_EndCdataSectionHandler end) |
| 1318 |
|
|
|
| 1319 |
|
|
startCdataSectionHandler = start; |
| 1320 |
|
|
endCdataSectionHandler = end; |
| 1321 |
|
|
|
| 1322 |
|
|
|
| 1323 |
|
|
|
| 1324 |
|
|
XML_SetStartCdataSectionHandler(XML_Parser parser, |
| 1325 |
|
|
XML_StartCdataSectionHandler start) { |
| 1326 |
|
|
startCdataSectionHandler = start; |
| 1327 |
|
|
|
| 1328 |
|
|
|
| 1329 |
|
|
|
| 1330 |
|
|
XML_SetEndCdataSectionHandler(XML_Parser parser, |
| 1331 |
|
|
XML_EndCdataSectionHandler end) { |
| 1332 |
|
|
endCdataSectionHandler = end; |
| 1333 |
|
|
|
| 1334 |
|
|
|
| 1335 |
|
|
|
| 1336 |
|
|
XML_SetDefaultHandler(XML_Parser parser, |
| 1337 |
|
|
XML_DefaultHandler handler) |
| 1338 |
|
|
|
| 1339 |
|
|
defaultHandler = handler; |
| 1340 |
|
|
defaultExpandInternalEntities = XML_FALSE; |
| 1341 |
|
|
|
| 1342 |
|
|
|
| 1343 |
|
|
|
| 1344 |
|
|
XML_SetDefaultHandlerExpand(XML_Parser parser, |
| 1345 |
|
|
XML_DefaultHandler handler) |
| 1346 |
|
|
|
| 1347 |
|
|
defaultHandler = handler; |
| 1348 |
|
|
defaultExpandInternalEntities = XML_TRUE; |
| 1349 |
|
|
|
| 1350 |
|
|
|
| 1351 |
|
|
|
| 1352 |
|
|
XML_SetDoctypeDeclHandler(XML_Parser parser, |
| 1353 |
|
|
XML_StartDoctypeDeclHandler start, |
| 1354 |
|
|
XML_EndDoctypeDeclHandler end) |
| 1355 |
|
|
|
| 1356 |
|
|
startDoctypeDeclHandler = start; |
| 1357 |
|
|
endDoctypeDeclHandler = end; |
| 1358 |
|
|
|
| 1359 |
|
|
|
| 1360 |
|
|
|
| 1361 |
|
|
XML_SetStartDoctypeDeclHandler(XML_Parser parser, |
| 1362 |
|
|
XML_StartDoctypeDeclHandler start) { |
| 1363 |
|
|
startDoctypeDeclHandler = start; |
| 1364 |
|
|
|
| 1365 |
|
|
|
| 1366 |
|
|
|
| 1367 |
|
|
XML_SetEndDoctypeDeclHandler(XML_Parser parser, |
| 1368 |
|
|
XML_EndDoctypeDeclHandler end) { |
| 1369 |
|
|
endDoctypeDeclHandler = end; |
| 1370 |
|
|
|
| 1371 |
|
|
|
| 1372 |
|
|
|
| 1373 |
|
|
XML_SetUnparsedEntityDeclHandler(XML_Parser parser, |
| 1374 |
|
|
XML_UnparsedEntityDeclHandler handler) |
| 1375 |
|
|
|
| 1376 |
|
|
unparsedEntityDeclHandler = handler; |
| 1377 |
|
|
|
| 1378 |
|
|
|
| 1379 |
|
|
|
| 1380 |
|
|
XML_SetNotationDeclHandler(XML_Parser parser, |
| 1381 |
|
|
XML_NotationDeclHandler handler) |
| 1382 |
|
|
|
| 1383 |
|
|
notationDeclHandler = handler; |
| 1384 |
|
|
|
| 1385 |
|
|
|
| 1386 |
|
|
|
| 1387 |
|
|
XML_SetNamespaceDeclHandler(XML_Parser parser, |
| 1388 |
|
|
XML_StartNamespaceDeclHandler start, |
| 1389 |
|
|
XML_EndNamespaceDeclHandler end) |
| 1390 |
|
|
|
| 1391 |
|
|
startNamespaceDeclHandler = start; |
| 1392 |
|
|
endNamespaceDeclHandler = end; |
| 1393 |
|
|
|
| 1394 |
|
|
|
| 1395 |
|
|
|
| 1396 |
|
|
XML_SetStartNamespaceDeclHandler(XML_Parser parser, |
| 1397 |
|
|
XML_StartNamespaceDeclHandler start) { |
| 1398 |
|
|
startNamespaceDeclHandler = start; |
| 1399 |
|
|
|
| 1400 |
|
|
|
| 1401 |
|
|
|
| 1402 |
|
|
XML_SetEndNamespaceDeclHandler(XML_Parser parser, |
| 1403 |
|
|
XML_EndNamespaceDeclHandler end) { |
| 1404 |
|
|
endNamespaceDeclHandler = end; |
| 1405 |
|
|
|
| 1406 |
|
|
|
| 1407 |
|
|
|
| 1408 |
|
|
XML_SetNotStandaloneHandler(XML_Parser parser, |
| 1409 |
|
|
XML_NotStandaloneHandler handler) |
| 1410 |
|
|
|
| 1411 |
|
|
notStandaloneHandler = handler; |
| 1412 |
|
|
|
| 1413 |
|
|
|
| 1414 |
|
|
|
| 1415 |
|
|
XML_SetExternalEntityRefHandler(XML_Parser parser, |
| 1416 |
|
|
XML_ExternalEntityRefHandler handler) |
| 1417 |
|
|
|
| 1418 |
|
|
externalEntityRefHandler = handler; |
| 1419 |
|
|
|
| 1420 |
|
|
|
| 1421 |
|
|
|
| 1422 |
|
|
XML_SetExternalEntityRefHandlerArg(XML_Parser parser, void *arg) |
| 1423 |
|
|
|
| 1424 |
|
|
|
| 1425 |
|
|
externalEntityRefHandlerArg = (XML_Parser)arg; |
| 1426 |
|
|
|
| 1427 |
|
|
externalEntityRefHandlerArg = parser; |
| 1428 |
|
|
|
| 1429 |
|
|
|
| 1430 |
|
|
|
| 1431 |
|
|
XML_SetSkippedEntityHandler(XML_Parser parser, |
| 1432 |
|
|
XML_SkippedEntityHandler handler) |
| 1433 |
|
|
|
| 1434 |
|
|
skippedEntityHandler = handler; |
| 1435 |
|
|
|
| 1436 |
|
|
|
| 1437 |
|
|
|
| 1438 |
|
|
XML_SetUnknownEncodingHandler(XML_Parser parser, |
| 1439 |
|
|
XML_UnknownEncodingHandler handler, |
| 1440 |
|
|
|
| 1441 |
|
|
|
| 1442 |
|
|
unknownEncodingHandler = handler; |
| 1443 |
|
|
unknownEncodingHandlerData = data; |
| 1444 |
|
|
|
| 1445 |
|
|
|
| 1446 |
|
|
|
| 1447 |
|
|
XML_SetElementDeclHandler(XML_Parser parser, |
| 1448 |
|
|
XML_ElementDeclHandler eldecl) |
| 1449 |
|
|
|
| 1450 |
|
|
elementDeclHandler = eldecl; |
| 1451 |
|
|
|
| 1452 |
|
|
|
| 1453 |
|
|
|
| 1454 |
|
|
XML_SetAttlistDeclHandler(XML_Parser parser, |
| 1455 |
|
|
XML_AttlistDeclHandler attdecl) |
| 1456 |
|
|
|
| 1457 |
|
|
attlistDeclHandler = attdecl; |
| 1458 |
|
|
|
| 1459 |
|
|
|
| 1460 |
|
|
|
| 1461 |
|
|
XML_SetEntityDeclHandler(XML_Parser parser, |
| 1462 |
|
|
XML_EntityDeclHandler handler) |
| 1463 |
|
|
|
| 1464 |
|
|
entityDeclHandler = handler; |
| 1465 |
|
|
|
| 1466 |
|
|
|
| 1467 |
|
|
|
| 1468 |
|
|
XML_SetXmlDeclHandler(XML_Parser parser, |
| 1469 |
|
|
XML_XmlDeclHandler handler) { |
| 1470 |
|
|
xmlDeclHandler = handler; |
| 1471 |
|
|
|
| 1472 |
|
|
|
| 1473 |
|
|
|
| 1474 |
|
|
XML_SetParamEntityParsing(XML_Parser parser, |
| 1475 |
|
|
enum XML_ParamEntityParsing peParsing) |
| 1476 |
|
|
|
| 1477 |
|
|
/* block after XML_Parse()/XML_ParseBuffer() has been called */ |
| 1478 |
|
|
if (ps_parsing == XML_PARSING || ps_parsing == XML_SUSPENDED) |
| 1479 |
|
|
|
| 1480 |
|
|
|
| 1481 |
|
|
paramEntityParsing = peParsing; |
| 1482 |
|
|
|
| 1483 |
|
|
|
| 1484 |
|
|
return peParsing == XML_PARAM_ENTITY_PARSING_NEVER; |
| 1485 |
|
|
|
| 1486 |
|
|
|
| 1487 |
|
|
|
| 1488 |
|
|
|
| 1489 |
|
|
XML_SetHashSalt(XML_Parser parser, |
| 1490 |
|
|
|
| 1491 |
|
|
|
| 1492 |
|
|
/* block after XML_Parse()/XML_ParseBuffer() has been called */ |
| 1493 |
|
|
if (ps_parsing == XML_PARSING || ps_parsing == XML_SUSPENDED) |
| 1494 |
|
|
|
| 1495 |
|
|
hash_secret_salt = hash_salt; |
| 1496 |
|
|
|
| 1497 |
|
|
|
| 1498 |
|
|
|
| 1499 |
|
|
|
| 1500 |
|
|
XML_Parse(XML_Parser parser, const char *s, int len, int isFinal) |
| 1501 |
|
|
|
| 1502 |
|
|
|
| 1503 |
|
|
|
| 1504 |
|
|
errorCode = XML_ERROR_SUSPENDED; |
| 1505 |
|
|
|
| 1506 |
|
|
|
| 1507 |
|
|
errorCode = XML_ERROR_FINISHED; |
| 1508 |
|
|
|
| 1509 |
|
|
|
| 1510 |
|
|
if (parentParser == NULL && !startParsing(parser)) { |
|
|
inline |
startParsing can be inlined into PyExpat_XML_Parse with cost=-14850 (threshold=250) |
PyExpat_XML_Parse |
|
|
inline |
startParsing inlined into PyExpat_XML_Parse |
PyExpat_XML_Parse |
| 1511 |
|
|
errorCode = XML_ERROR_NO_MEMORY; |
| 1512 |
|
|
|
| 1513 |
|
|
|
| 1514 |
|
|
|
| 1515 |
|
|
ps_parsing = XML_PARSING; |
| 1516 |
|
|
|
| 1517 |
|
|
|
| 1518 |
|
|
|
| 1519 |
|
|
ps_finalBuffer = (XML_Bool)isFinal; |
| 1520 |
|
|
|
| 1521 |
|
|
|
| 1522 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
| 1523 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
| 1524 |
|
|
|
| 1525 |
|
|
/* If data are left over from last buffer, and we now know that these |
| 1526 |
|
|
data are the final chunk of input, then we have to check them again |
| 1527 |
|
|
to detect errors based on that fact. |
| 1528 |
|
|
|
| 1529 |
|
|
errorCode = processor(parser, bufferPtr, parseEndPtr, &bufferPtr); |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
| 1530 |
|
|
|
| 1531 |
|
|
if (errorCode == XML_ERROR_NONE) { |
| 1532 |
|
|
|
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
| 1533 |
|
|
|
| 1534 |
|
|
XmlUpdatePosition(encoding, positionPtr, bufferPtr, &position); |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
PyExpat_XML_Parse |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_Parse |
| 1535 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
| 1536 |
|
|
return XML_STATUS_SUSPENDED; |
| 1537 |
|
|
|
| 1538 |
|
|
|
| 1539 |
|
|
ps_parsing = XML_FINISHED; |
| 1540 |
|
|
|
| 1541 |
|
|
|
| 1542 |
|
|
|
| 1543 |
|
|
|
| 1544 |
|
|
|
| 1545 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_Parse |
| 1546 |
|
|
processor = errorProcessor; |
| 1547 |
|
|
|
| 1548 |
|
|
|
| 1549 |
|
|
#ifndef XML_CONTEXT_BYTES |
| 1550 |
|
|
else if (bufferPtr == bufferEnd) { |
| 1551 |
|
|
|
| 1552 |
|
|
|
| 1553 |
|
|
|
| 1554 |
|
|
parseEndByteIndex += len; |
| 1555 |
|
|
|
| 1556 |
|
|
ps_finalBuffer = (XML_Bool)isFinal; |
| 1557 |
|
|
|
| 1558 |
|
|
errorCode = processor(parser, s, parseEndPtr = s + len, &end); |
| 1559 |
|
|
|
| 1560 |
|
|
if (errorCode != XML_ERROR_NONE) { |
| 1561 |
|
|
|
| 1562 |
|
|
processor = errorProcessor; |
| 1563 |
|
|
|
| 1564 |
|
|
|
| 1565 |
|
|
|
| 1566 |
|
|
|
| 1567 |
|
|
|
| 1568 |
|
|
result = XML_STATUS_SUSPENDED; |
| 1569 |
|
|
|
| 1570 |
|
|
|
| 1571 |
|
|
|
| 1572 |
|
|
|
| 1573 |
|
|
ps_parsing = XML_FINISHED; |
| 1574 |
|
|
|
| 1575 |
|
|
|
| 1576 |
|
|
|
| 1577 |
|
|
|
| 1578 |
|
|
|
| 1579 |
|
|
|
| 1580 |
|
|
|
| 1581 |
|
|
|
| 1582 |
|
|
XmlUpdatePosition(encoding, positionPtr, end, &position); |
| 1583 |
|
|
nLeftOver = s + len - end; |
| 1584 |
|
|
|
| 1585 |
|
|
if (buffer == NULL || nLeftOver > bufferLim - buffer) { |
| 1586 |
|
|
/* FIXME avoid integer overflow */ |
| 1587 |
|
|
|
| 1588 |
|
|
|
| 1589 |
|
|
? (char *)MALLOC(len * 2) |
| 1590 |
|
|
: (char *)REALLOC(buffer, len * 2)); |
| 1591 |
|
|
|
| 1592 |
|
|
errorCode = XML_ERROR_NO_MEMORY; |
| 1593 |
|
|
eventPtr = eventEndPtr = NULL; |
| 1594 |
|
|
processor = errorProcessor; |
| 1595 |
|
|
|
| 1596 |
|
|
|
| 1597 |
|
|
|
| 1598 |
|
|
bufferLim = buffer + len * 2; |
| 1599 |
|
|
|
| 1600 |
|
|
memcpy(buffer, end, nLeftOver); |
| 1601 |
|
|
|
| 1602 |
|
|
|
| 1603 |
|
|
bufferEnd = buffer + nLeftOver; |
| 1604 |
|
|
|
| 1605 |
|
|
|
| 1606 |
|
|
|
| 1607 |
|
|
|
| 1608 |
|
|
|
| 1609 |
|
|
|
| 1610 |
|
|
#endif /* not defined XML_CONTEXT_BYTES */ |
| 1611 |
|
|
|
| 1612 |
|
|
void *buff = XML_GetBuffer(parser, len); |
|
|
inline |
PyExpat_XML_GetBuffer too costly to inline (cost=440, threshold=250) |
PyExpat_XML_Parse |
|
|
inline |
PyExpat_XML_GetBuffer will not be inlined into PyExpat_XML_Parse |
PyExpat_XML_Parse |
| 1613 |
|
|
|
| 1614 |
|
|
|
| 1615 |
|
|
|
| 1616 |
|
|
|
| 1617 |
|
|
return XML_ParseBuffer(parser, len, isFinal); |
|
|
inline |
PyExpat_XML_ParseBuffer too costly to inline (cost=415, threshold=250) |
PyExpat_XML_Parse |
|
|
inline |
PyExpat_XML_ParseBuffer will not be inlined into PyExpat_XML_Parse |
PyExpat_XML_Parse |
| 1618 |
|
|
|
| 1619 |
|
|
|
| 1620 |
|
|
|
| 1621 |
|
|
|
| 1622 |
|
|
|
| 1623 |
|
|
XML_ParseBuffer(XML_Parser parser, int len, int isFinal) |
| 1624 |
|
|
|
| 1625 |
|
|
|
| 1626 |
|
|
enum XML_Status result = XML_STATUS_OK; |
| 1627 |
|
|
|
| 1628 |
|
|
|
| 1629 |
|
|
|
| 1630 |
|
|
errorCode = XML_ERROR_SUSPENDED; |
| 1631 |
|
|
|
| 1632 |
|
|
|
| 1633 |
|
|
errorCode = XML_ERROR_FINISHED; |
| 1634 |
|
|
|
| 1635 |
|
|
|
| 1636 |
|
|
if (parentParser == NULL && !startParsing(parser)) { |
|
|
inline |
startParsing can be inlined into PyExpat_XML_ParseBuffer with cost=150 (threshold=250) |
PyExpat_XML_ParseBuffer |
|
|
inline |
startParsing inlined into PyExpat_XML_ParseBuffer |
PyExpat_XML_ParseBuffer |
| 1637 |
|
|
errorCode = XML_ERROR_NO_MEMORY; |
| 1638 |
|
|
|
| 1639 |
|
|
|
| 1640 |
|
|
|
| 1641 |
|
|
ps_parsing = XML_PARSING; |
| 1642 |
|
|
|
| 1643 |
|
|
|
| 1644 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
| 1645 |
|
|
|
| 1646 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
| 1647 |
|
|
|
| 1648 |
|
|
parseEndByteIndex += len; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
| 1649 |
|
|
ps_finalBuffer = (XML_Bool)isFinal; |
| 1650 |
|
|
|
| 1651 |
|
|
errorCode = processor(parser, start, parseEndPtr, &bufferPtr); |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
|
|
gvn |
load of type i8* eliminated in favor of getelementptr |
PyExpat_XML_ParseBuffer |
| 1652 |
|
|
|
| 1653 |
|
|
if (errorCode != XML_ERROR_NONE) { |
| 1654 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
| 1655 |
|
|
processor = errorProcessor; |
| 1656 |
|
|
|
| 1657 |
|
|
|
| 1658 |
|
|
|
| 1659 |
|
|
|
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
| 1660 |
|
|
|
| 1661 |
|
|
result = XML_STATUS_SUSPENDED; |
| 1662 |
|
|
|
| 1663 |
|
|
|
| 1664 |
|
|
|
| 1665 |
|
|
|
| 1666 |
|
|
ps_parsing = XML_FINISHED; |
| 1667 |
|
|
|
| 1668 |
|
|
|
| 1669 |
|
|
default: ; /* should not happen */ |
| 1670 |
|
|
|
| 1671 |
|
|
|
| 1672 |
|
|
|
| 1673 |
|
|
XmlUpdatePosition(encoding, positionPtr, bufferPtr, &position); |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
PyExpat_XML_ParseBuffer |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParseBuffer |
| 1674 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParseBuffer |
| 1675 |
|
|
|
| 1676 |
|
|
|
| 1677 |
|
|
|
| 1678 |
|
|
|
| 1679 |
|
|
XML_GetBuffer(XML_Parser parser, int len) |
| 1680 |
|
|
|
| 1681 |
|
|
|
| 1682 |
|
|
errorCode = XML_ERROR_NO_MEMORY; |
| 1683 |
|
|
|
| 1684 |
|
|
|
| 1685 |
|
|
|
| 1686 |
|
|
|
| 1687 |
|
|
errorCode = XML_ERROR_SUSPENDED; |
| 1688 |
|
|
|
| 1689 |
|
|
|
| 1690 |
|
|
errorCode = XML_ERROR_FINISHED; |
| 1691 |
|
|
|
| 1692 |
|
|
|
| 1693 |
|
|
|
| 1694 |
|
|
|
| 1695 |
|
|
if (len > bufferLim - bufferEnd) { |
| 1696 |
|
|
|
| 1697 |
|
|
|
| 1698 |
|
|
|
| 1699 |
|
|
int neededSize = len + (int)(bufferEnd - bufferPtr); |
| 1700 |
|
|
|
| 1701 |
|
|
errorCode = XML_ERROR_NO_MEMORY; |
| 1702 |
|
|
|
| 1703 |
|
|
|
| 1704 |
|
|
|
| 1705 |
|
|
keep = (int)(bufferPtr - buffer); |
| 1706 |
|
|
|
| 1707 |
|
|
if (keep > XML_CONTEXT_BYTES) |
| 1708 |
|
|
keep = XML_CONTEXT_BYTES; |
| 1709 |
|
|
|
| 1710 |
|
|
#endif /* defined XML_CONTEXT_BYTES */ |
| 1711 |
|
|
if (neededSize <= bufferLim - buffer) { |
| 1712 |
|
|
|
| 1713 |
|
|
if (keep < bufferPtr - buffer) { |
| 1714 |
|
|
int offset = (int)(bufferPtr - buffer) - keep; |
| 1715 |
|
|
memmove(buffer, &buffer[offset], bufferEnd - bufferPtr + keep); |
| 1716 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_GetBuffer |
| 1717 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_GetBuffer |
| 1718 |
|
|
|
| 1719 |
|
|
|
| 1720 |
|
|
memmove(buffer, bufferPtr, bufferEnd - bufferPtr); |
| 1721 |
|
|
bufferEnd = buffer + (bufferEnd - bufferPtr); |
| 1722 |
|
|
|
| 1723 |
|
|
#endif /* not defined XML_CONTEXT_BYTES */ |
| 1724 |
|
|
|
| 1725 |
|
|
|
| 1726 |
|
|
|
| 1727 |
|
|
int bufferSize = (int)(bufferLim - bufferPtr); |
| 1728 |
|
|
|
| 1729 |
|
|
bufferSize = INIT_BUFFER_SIZE; |
| 1730 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_GetBuffer |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_GetBuffer |
| 1731 |
|
|
|
| 1732 |
|
|
} while (bufferSize < neededSize && bufferSize > 0); |
| 1733 |
|
|
|
| 1734 |
|
|
errorCode = XML_ERROR_NO_MEMORY; |
| 1735 |
|
|
|
| 1736 |
|
|
|
| 1737 |
|
|
newBuf = (char *)MALLOC(bufferSize); |
| 1738 |
|
|
|
| 1739 |
|
|
errorCode = XML_ERROR_NO_MEMORY; |
| 1740 |
|
|
|
| 1741 |
|
|
|
| 1742 |
|
|
bufferLim = newBuf + bufferSize; |
| 1743 |
|
|
|
| 1744 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_GetBuffer |
| 1745 |
|
|
int keep = (int)(bufferPtr - buffer); |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_GetBuffer |
| 1746 |
|
|
if (keep > XML_CONTEXT_BYTES) |
| 1747 |
|
|
keep = XML_CONTEXT_BYTES; |
| 1748 |
|
|
memcpy(newBuf, &bufferPtr[-keep], bufferEnd - bufferPtr + keep); |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_GetBuffer |
| 1749 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_GetBuffer |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_GetBuffer |
| 1750 |
|
|
|
| 1751 |
|
|
bufferEnd = buffer + (bufferEnd - bufferPtr) + keep; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_GetBuffer |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_GetBuffer |
| 1752 |
|
|
bufferPtr = buffer + keep; |
|
|
gvn |
load of type i8* eliminated in favor of call |
PyExpat_XML_GetBuffer |
| 1753 |
|
|
|
| 1754 |
|
|
|
| 1755 |
|
|
bufferEnd = newBuf + (bufferEnd - bufferPtr); |
| 1756 |
|
|
bufferPtr = buffer = newBuf; |
| 1757 |
|
|
|
| 1758 |
|
|
|
| 1759 |
|
|
|
| 1760 |
|
|
memcpy(newBuf, bufferPtr, bufferEnd - bufferPtr); |
| 1761 |
|
|
|
| 1762 |
|
|
|
| 1763 |
|
|
bufferEnd = newBuf + (bufferEnd - bufferPtr); |
| 1764 |
|
|
bufferPtr = buffer = newBuf; |
| 1765 |
|
|
#endif /* not defined XML_CONTEXT_BYTES */ |
| 1766 |
|
|
|
| 1767 |
|
|
eventPtr = eventEndPtr = NULL; |
| 1768 |
|
|
|
| 1769 |
|
|
|
| 1770 |
|
|
|
|
|
gvn |
load of type i8* eliminated in favor of phi |
PyExpat_XML_GetBuffer |
| 1771 |
|
|
|
| 1772 |
|
|
|
| 1773 |
|
|
|
| 1774 |
|
|
XML_StopParser(XML_Parser parser, XML_Bool resumable) |
| 1775 |
|
|
|
| 1776 |
|
|
|
| 1777 |
|
|
|
| 1778 |
|
|
|
| 1779 |
|
|
errorCode = XML_ERROR_SUSPENDED; |
| 1780 |
|
|
|
| 1781 |
|
|
|
| 1782 |
|
|
ps_parsing = XML_FINISHED; |
| 1783 |
|
|
|
| 1784 |
|
|
|
| 1785 |
|
|
errorCode = XML_ERROR_FINISHED; |
| 1786 |
|
|
|
| 1787 |
|
|
|
| 1788 |
|
|
|
| 1789 |
|
|
|
| 1790 |
|
|
|
| 1791 |
|
|
errorCode = XML_ERROR_SUSPEND_PE; |
| 1792 |
|
|
|
| 1793 |
|
|
|
| 1794 |
|
|
|
| 1795 |
|
|
ps_parsing = XML_SUSPENDED; |
| 1796 |
|
|
|
| 1797 |
|
|
|
| 1798 |
|
|
ps_parsing = XML_FINISHED; |
| 1799 |
|
|
|
| 1800 |
|
|
|
| 1801 |
|
|
|
| 1802 |
|
|
|
| 1803 |
|
|
|
| 1804 |
|
|
XML_ResumeParser(XML_Parser parser) |
| 1805 |
|
|
|
| 1806 |
|
|
enum XML_Status result = XML_STATUS_OK; |
| 1807 |
|
|
|
| 1808 |
|
|
if (ps_parsing != XML_SUSPENDED) { |
| 1809 |
|
|
errorCode = XML_ERROR_NOT_SUSPENDED; |
| 1810 |
|
|
|
| 1811 |
|
|
|
| 1812 |
|
|
ps_parsing = XML_PARSING; |
| 1813 |
|
|
|
| 1814 |
|
|
errorCode = processor(parser, bufferPtr, parseEndPtr, &bufferPtr); |
| 1815 |
|
|
|
| 1816 |
|
|
if (errorCode != XML_ERROR_NONE) { |
| 1817 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ResumeParser |
| 1818 |
|
|
processor = errorProcessor; |
| 1819 |
|
|
|
| 1820 |
|
|
|
| 1821 |
|
|
|
| 1822 |
|
|
|
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
PyExpat_XML_ResumeParser |
| 1823 |
|
|
|
| 1824 |
|
|
result = XML_STATUS_SUSPENDED; |
| 1825 |
|
|
|
| 1826 |
|
|
|
| 1827 |
|
|
|
| 1828 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ResumeParser |
| 1829 |
|
|
ps_parsing = XML_FINISHED; |
| 1830 |
|
|
|
| 1831 |
|
|
|
| 1832 |
|
|
|
| 1833 |
|
|
|
| 1834 |
|
|
|
| 1835 |
|
|
|
| 1836 |
|
|
XmlUpdatePosition(encoding, positionPtr, bufferPtr, &position); |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
PyExpat_XML_ResumeParser |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ResumeParser |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ResumeParser |
| 1837 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ResumeParser |
| 1838 |
|
|
|
| 1839 |
|
|
|
| 1840 |
|
|
|
| 1841 |
|
|
|
| 1842 |
|
|
XML_GetParsingStatus(XML_Parser parser, XML_ParsingStatus *status) |
| 1843 |
|
|
|
| 1844 |
|
|
|
| 1845 |
|
|
*status = parser->m_parsingStatus; |
| 1846 |
|
|
|
| 1847 |
|
|
|
| 1848 |
|
|
|
| 1849 |
|
|
XML_GetErrorCode(XML_Parser parser) |
| 1850 |
|
|
|
| 1851 |
|
|
|
| 1852 |
|
|
|
| 1853 |
|
|
|
| 1854 |
|
|
|
| 1855 |
|
|
XML_GetCurrentByteIndex(XML_Parser parser) |
| 1856 |
|
|
|
| 1857 |
|
|
|
| 1858 |
|
|
return parseEndByteIndex - (parseEndPtr - eventPtr); |
| 1859 |
|
|
|
| 1860 |
|
|
|
| 1861 |
|
|
|
| 1862 |
|
|
|
| 1863 |
|
|
XML_GetCurrentByteCount(XML_Parser parser) |
| 1864 |
|
|
|
| 1865 |
|
|
if (eventEndPtr && eventPtr) |
| 1866 |
|
|
return (int)(eventEndPtr - eventPtr); |
| 1867 |
|
|
|
| 1868 |
|
|
|
| 1869 |
|
|
|
| 1870 |
|
|
|
| 1871 |
|
|
XML_GetInputContext(XML_Parser parser, int *offset, int *size) |
| 1872 |
|
|
|
| 1873 |
|
|
|
| 1874 |
|
|
if (eventPtr && buffer) { |
| 1875 |
|
|
*offset = (int)(eventPtr - buffer); |
| 1876 |
|
|
*size = (int)(bufferEnd - buffer); |
| 1877 |
|
|
|
| 1878 |
|
|
|
| 1879 |
|
|
#endif /* defined XML_CONTEXT_BYTES */ |
| 1880 |
|
|
|
| 1881 |
|
|
|
| 1882 |
|
|
|
| 1883 |
|
|
|
| 1884 |
|
|
XML_GetCurrentLineNumber(XML_Parser parser) |
| 1885 |
|
|
|
| 1886 |
|
|
if (eventPtr && eventPtr >= positionPtr) { |
| 1887 |
|
|
XmlUpdatePosition(encoding, positionPtr, eventPtr, &position); |
| 1888 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_GetCurrentLineNumber |
| 1889 |
|
|
|
| 1890 |
|
|
return position.lineNumber + 1; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_GetCurrentLineNumber |
| 1891 |
|
|
|
| 1892 |
|
|
|
| 1893 |
|
|
|
| 1894 |
|
|
XML_GetCurrentColumnNumber(XML_Parser parser) |
| 1895 |
|
|
|
| 1896 |
|
|
if (eventPtr && eventPtr >= positionPtr) { |
| 1897 |
|
|
XmlUpdatePosition(encoding, positionPtr, eventPtr, &position); |
| 1898 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_GetCurrentColumnNumber |
| 1899 |
|
|
|
| 1900 |
|
|
return position.columnNumber; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_GetCurrentColumnNumber |
| 1901 |
|
|
|
| 1902 |
|
|
|
| 1903 |
|
|
|
| 1904 |
|
|
XML_FreeContentModel(XML_Parser parser, XML_Content *model) |
| 1905 |
|
|
|
| 1906 |
|
|
|
| 1907 |
|
|
|
| 1908 |
|
|
|
| 1909 |
|
|
|
| 1910 |
|
|
XML_MemMalloc(XML_Parser parser, size_t size) |
| 1911 |
|
|
|
| 1912 |
|
|
|
| 1913 |
|
|
|
| 1914 |
|
|
|
| 1915 |
|
|
|
| 1916 |
|
|
XML_MemRealloc(XML_Parser parser, void *ptr, size_t size) |
| 1917 |
|
|
|
| 1918 |
|
|
return REALLOC(ptr, size); |
| 1919 |
|
|
|
| 1920 |
|
|
|
| 1921 |
|
|
|
| 1922 |
|
|
XML_MemFree(XML_Parser parser, void *ptr) |
| 1923 |
|
|
|
| 1924 |
|
|
|
| 1925 |
|
|
|
| 1926 |
|
|
|
| 1927 |
|
|
|
| 1928 |
|
|
XML_DefaultCurrent(XML_Parser parser) |
| 1929 |
|
|
|
| 1930 |
|
|
|
| 1931 |
|
|
if (openInternalEntities) |
| 1932 |
|
|
|
|
|
inline |
reportDefault can be inlined into PyExpat_XML_DefaultCurrent with cost=165 (threshold=250) |
PyExpat_XML_DefaultCurrent |
|
|
inline |
reportDefault inlined into PyExpat_XML_DefaultCurrent |
PyExpat_XML_DefaultCurrent |
| 1933 |
|
|
|
| 1934 |
|
|
openInternalEntities->internalEventPtr, |
| 1935 |
|
|
openInternalEntities->internalEventEndPtr); |
| 1936 |
|
|
|
| 1937 |
|
|
reportDefault(parser, encoding, eventPtr, eventEndPtr); |
|
|
inline |
reportDefault can be inlined into PyExpat_XML_DefaultCurrent with cost=165 (threshold=250) |
PyExpat_XML_DefaultCurrent |
|
|
inline |
reportDefault inlined into PyExpat_XML_DefaultCurrent |
PyExpat_XML_DefaultCurrent |
| 1938 |
|
|
|
| 1939 |
|
|
|
| 1940 |
|
|
|
| 1941 |
|
|
const XML_LChar * XMLCALL |
| 1942 |
|
|
XML_ErrorString(enum XML_Error code) |
| 1943 |
|
|
|
| 1944 |
|
|
static const XML_LChar* const message[] = { |
| 1945 |
|
|
|
| 1946 |
|
|
|
| 1947 |
|
|
|
| 1948 |
|
|
XML_L("no element found"), |
| 1949 |
|
|
XML_L("not well-formed (invalid token)"), |
| 1950 |
|
|
|
| 1951 |
|
|
XML_L("partial character"), |
| 1952 |
|
|
|
| 1953 |
|
|
XML_L("duplicate attribute"), |
| 1954 |
|
|
XML_L("junk after document element"), |
| 1955 |
|
|
XML_L("illegal parameter entity reference"), |
| 1956 |
|
|
XML_L("undefined entity"), |
| 1957 |
|
|
XML_L("recursive entity reference"), |
| 1958 |
|
|
XML_L("asynchronous entity"), |
| 1959 |
|
|
XML_L("reference to invalid character number"), |
| 1960 |
|
|
XML_L("reference to binary entity"), |
| 1961 |
|
|
XML_L("reference to external entity in attribute"), |
| 1962 |
|
|
XML_L("XML or text declaration not at start of entity"), |
| 1963 |
|
|
XML_L("unknown encoding"), |
| 1964 |
|
|
XML_L("encoding specified in XML declaration is incorrect"), |
| 1965 |
|
|
XML_L("unclosed CDATA section"), |
| 1966 |
|
|
XML_L("error in processing external entity reference"), |
| 1967 |
|
|
XML_L("document is not standalone"), |
| 1968 |
|
|
XML_L("unexpected parser state - please send a bug report"), |
| 1969 |
|
|
XML_L("entity declared in parameter entity"), |
| 1970 |
|
|
XML_L("requested feature requires XML_DTD support in Expat"), |
| 1971 |
|
|
XML_L("cannot change setting once parsing has begun"), |
| 1972 |
|
|
|
| 1973 |
|
|
XML_L("must not undeclare prefix"), |
| 1974 |
|
|
XML_L("incomplete markup in parameter entity"), |
| 1975 |
|
|
XML_L("XML declaration not well-formed"), |
| 1976 |
|
|
XML_L("text declaration not well-formed"), |
| 1977 |
|
|
XML_L("illegal character(s) in public id"), |
| 1978 |
|
|
XML_L("parser suspended"), |
| 1979 |
|
|
XML_L("parser not suspended"), |
| 1980 |
|
|
XML_L("parsing aborted"), |
| 1981 |
|
|
XML_L("parsing finished"), |
| 1982 |
|
|
XML_L("cannot suspend in external parameter entity"), |
| 1983 |
|
|
XML_L("reserved prefix (xml) must not be undeclared or bound to another namespace name"), |
| 1984 |
|
|
XML_L("reserved prefix (xmlns) must not be declared or undeclared"), |
| 1985 |
|
|
XML_L("prefix must not be bound to one of the reserved namespace names") |
| 1986 |
|
|
|
| 1987 |
|
|
if (code > 0 && code < sizeof(message)/sizeof(message[0])) |
| 1988 |
|
|
|
| 1989 |
|
|
|
| 1990 |
|
|
|
| 1991 |
|
|
|
| 1992 |
|
|
const XML_LChar * XMLCALL |
| 1993 |
|
|
|
| 1994 |
|
|
|
| 1995 |
|
|
/* V1 is used to string-ize the version number. However, it would |
| 1996 |
|
|
string-ize the actual version macro *names* unless we get them |
| 1997 |
|
|
substituted before being passed to V1. CPP is defined to expand |
| 1998 |
|
|
a macro, then rescan for more expansions. Thus, we use V2 to expand |
| 1999 |
|
|
the version macros, then CPP will expand the resulting V1() macro |
| 2000 |
|
|
with the correct numerals. */ |
| 2001 |
|
|
/* ### I'm assuming cpp is portable in this respect... */ |
| 2002 |
|
|
|
| 2003 |
|
|
#define V1(a,b,c) XML_L(#a)XML_L(".")XML_L(#b)XML_L(".")XML_L(#c) |
| 2004 |
|
|
#define V2(a,b,c) XML_L("expat_")V1(a,b,c) |
| 2005 |
|
|
|
| 2006 |
|
|
return V2(XML_MAJOR_VERSION, XML_MINOR_VERSION, XML_MICRO_VERSION); |
| 2007 |
|
|
|
| 2008 |
|
|
|
| 2009 |
|
|
|
| 2010 |
|
|
|
| 2011 |
|
|
|
| 2012 |
|
|
XML_Expat_Version XMLCALL |
| 2013 |
|
|
XML_ExpatVersionInfo(void) |
| 2014 |
|
|
|
| 2015 |
|
|
XML_Expat_Version version; |
| 2016 |
|
|
|
| 2017 |
|
|
version.major = XML_MAJOR_VERSION; |
| 2018 |
|
|
version.minor = XML_MINOR_VERSION; |
| 2019 |
|
|
version.micro = XML_MICRO_VERSION; |
| 2020 |
|
|
|
| 2021 |
|
|
|
| 2022 |
|
|
|
| 2023 |
|
|
|
| 2024 |
|
|
const XML_Feature * XMLCALL |
| 2025 |
|
|
|
| 2026 |
|
|
|
| 2027 |
|
|
static const XML_Feature features[] = { |
| 2028 |
|
|
{XML_FEATURE_SIZEOF_XML_CHAR, XML_L("sizeof(XML_Char)"), |
| 2029 |
|
|
|
| 2030 |
|
|
{XML_FEATURE_SIZEOF_XML_LCHAR, XML_L("sizeof(XML_LChar)"), |
| 2031 |
|
|
|
| 2032 |
|
|
|
| 2033 |
|
|
{XML_FEATURE_UNICODE, XML_L("XML_UNICODE"), 0}, |
| 2034 |
|
|
|
| 2035 |
|
|
#ifdef XML_UNICODE_WCHAR_T |
| 2036 |
|
|
{XML_FEATURE_UNICODE_WCHAR_T, XML_L("XML_UNICODE_WCHAR_T"), 0}, |
| 2037 |
|
|
|
| 2038 |
|
|
|
| 2039 |
|
|
{XML_FEATURE_DTD, XML_L("XML_DTD"), 0}, |
| 2040 |
|
|
|
| 2041 |
|
|
|
| 2042 |
|
|
{XML_FEATURE_CONTEXT_BYTES, XML_L("XML_CONTEXT_BYTES"), |
| 2043 |
|
|
|
| 2044 |
|
|
|
| 2045 |
|
|
|
| 2046 |
|
|
{XML_FEATURE_MIN_SIZE, XML_L("XML_MIN_SIZE"), 0}, |
| 2047 |
|
|
|
| 2048 |
|
|
|
| 2049 |
|
|
{XML_FEATURE_NS, XML_L("XML_NS"), 0}, |
| 2050 |
|
|
|
| 2051 |
|
|
|
| 2052 |
|
|
{XML_FEATURE_LARGE_SIZE, XML_L("XML_LARGE_SIZE"), 0}, |
| 2053 |
|
|
|
| 2054 |
|
|
|
| 2055 |
|
|
{XML_FEATURE_ATTR_INFO, XML_L("XML_ATTR_INFO"), 0}, |
| 2056 |
|
|
|
| 2057 |
|
|
{XML_FEATURE_END, NULL, 0} |
| 2058 |
|
|
|
| 2059 |
|
|
|
| 2060 |
|
|
|
| 2061 |
|
|
|
| 2062 |
|
|
|
| 2063 |
|
|
/* Initially tag->rawName always points into the parse buffer; |
| 2064 |
|
|
for those TAG instances opened while the current parse buffer was |
| 2065 |
|
|
processed, and not yet closed, we need to store tag->rawName in a more |
| 2066 |
|
|
permanent location, since the parse buffer is about to be discarded. |
| 2067 |
|
|
|
| 2068 |
|
|
|
| 2069 |
|
|
storeRawNames(XML_Parser parser) |
| 2070 |
|
|
|
| 2071 |
|
|
|
| 2072 |
|
|
|
| 2073 |
|
|
|
| 2074 |
|
|
int nameLen = sizeof(XML_Char) * (tag->name.strLen + 1); |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeRawNames |
|
|
loop-vectorize |
loop not vectorized |
storeRawNames |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
cdataSectionProcessor |
|
|
loop-vectorize |
loop not vectorized |
cdataSectionProcessor |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
externalEntityInitProcessor3 |
|
|
loop-vectorize |
loop not vectorized |
externalEntityInitProcessor3 |
| 2075 |
|
|
char *rawNameBuf = tag->buf + nameLen; |
| 2076 |
|
|
/* Stop if already stored. Since tagStack is a stack, we can stop |
| 2077 |
|
|
at the first entry that has already been copied; everything |
| 2078 |
|
|
below it in the stack is already been accounted for in a |
| 2079 |
|
|
previous call to this function. |
| 2080 |
|
|
|
| 2081 |
|
|
if (tag->rawName == rawNameBuf) |
| 2082 |
|
|
|
| 2083 |
|
|
/* For re-use purposes we need to ensure that the |
| 2084 |
|
|
size of tag->buf is a multiple of sizeof(XML_Char). |
| 2085 |
|
|
|
| 2086 |
|
|
bufSize = nameLen + ROUND_UP(tag->rawNameLength, sizeof(XML_Char)); |
| 2087 |
|
|
if (bufSize > tag->bufEnd - tag->buf) { |
| 2088 |
|
|
char *temp = (char *)REALLOC(tag->buf, bufSize); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeRawNames |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
storeRawNames |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
externalEntityInitProcessor3 |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
cdataSectionProcessor |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
cdataSectionProcessor |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
cdataSectionProcessor |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
cdataSectionProcessor |
| 2089 |
|
|
|
| 2090 |
|
|
|
| 2091 |
|
|
/* if tag->name.str points to tag->buf (only when namespace |
| 2092 |
|
|
processing is off) then we have to update it |
| 2093 |
|
|
|
| 2094 |
|
|
if (tag->name.str == (XML_Char *)tag->buf) |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeRawNames |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeRawNames |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
cdataSectionProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
cdataSectionProcessor |
| 2095 |
|
|
tag->name.str = (XML_Char *)temp; |
| 2096 |
|
|
/* if tag->name.localPart is set (when namespace processing is on) |
| 2097 |
|
|
then update it as well, since it will always point into tag->buf |
| 2098 |
|
|
|
| 2099 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeRawNames |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
cdataSectionProcessor |
| 2100 |
|
|
tag->name.localPart = (XML_Char *)temp + (tag->name.localPart - |
| 2101 |
|
|
|
| 2102 |
|
|
|
| 2103 |
|
|
tag->bufEnd = temp + bufSize; |
| 2104 |
|
|
rawNameBuf = temp + nameLen; |
| 2105 |
|
|
|
| 2106 |
|
|
memcpy(rawNameBuf, tag->rawName, tag->rawNameLength); |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeRawNames |
|
|
gvn |
load eliminated by PRE |
storeRawNames |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
storeRawNames |
|
|
gvn |
load eliminated by PRE |
storeRawNames |
| 2107 |
|
|
tag->rawName = rawNameBuf; |
| 2108 |
|
|
|
| 2109 |
|
|
|
| 2110 |
|
|
|
| 2111 |
|
|
|
| 2112 |
|
|
|
| 2113 |
|
|
static enum XML_Error PTRCALL |
| 2114 |
|
|
contentProcessor(XML_Parser parser, |
| 2115 |
|
|
|
| 2116 |
|
|
|
| 2117 |
|
|
|
| 2118 |
|
|
|
| 2119 |
|
|
enum XML_Error result = doContent(parser, 0, encoding, start, end, |
|
|
inline |
doContent too costly to inline (cost=630, threshold=625) |
contentProcessor |
|
|
inline |
doContent will not be inlined into contentProcessor |
contentProcessor |
|
|
inline |
doContent too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
doContent will not be inlined into doProlog |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
inline |
doContent too costly to inline (cost=630, threshold=625) |
cdataSectionProcessor |
|
|
inline |
doContent will not be inlined into cdataSectionProcessor |
cdataSectionProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
cdataSectionProcessor |
| 2120 |
|
|
endPtr, (XML_Bool)!ps_finalBuffer); |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
cdataSectionProcessor |
| 2121 |
|
|
if (result == XML_ERROR_NONE) { |
| 2122 |
|
|
if (!storeRawNames(parser)) |
|
|
inline |
Not inlining. Cost of inlining storeRawNames increases the cost of inlining contentProcessor in other contexts |
contentProcessor |
|
|
inline |
storeRawNames will not be inlined into contentProcessor |
contentProcessor |
|
|
inline |
storeRawNames can be inlined into doProlog with cost=200 (threshold=250) |
doProlog |
|
|
inline |
storeRawNames inlined into doProlog |
doProlog |
|
|
inline |
storeRawNames can be inlined into cdataSectionProcessor with cost=200 (threshold=250) |
cdataSectionProcessor |
|
|
inline |
storeRawNames inlined into cdataSectionProcessor |
cdataSectionProcessor |
| 2123 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2124 |
|
|
|
| 2125 |
|
|
|
| 2126 |
|
|
|
| 2127 |
|
|
|
| 2128 |
|
|
static enum XML_Error PTRCALL |
| 2129 |
|
|
externalEntityInitProcessor(XML_Parser parser, |
| 2130 |
|
|
|
| 2131 |
|
|
|
| 2132 |
|
|
|
| 2133 |
|
|
|
| 2134 |
|
|
enum XML_Error result = initializeEncoding(parser); |
|
|
inline |
initializeEncoding can be inlined into externalEntityInitProcessor with cost=60 (threshold=250) |
externalEntityInitProcessor |
|
|
inline |
initializeEncoding inlined into externalEntityInitProcessor |
externalEntityInitProcessor |
| 2135 |
|
|
if (result != XML_ERROR_NONE) |
| 2136 |
|
|
|
| 2137 |
|
|
processor = externalEntityInitProcessor2; |
| 2138 |
|
|
return externalEntityInitProcessor2(parser, start, end, endPtr); |
|
|
inline |
externalEntityInitProcessor2 can be inlined into externalEntityInitProcessor with cost=155 (threshold=250) |
externalEntityInitProcessor |
|
|
inline |
externalEntityInitProcessor2 inlined into externalEntityInitProcessor |
externalEntityInitProcessor |
| 2139 |
|
|
|
| 2140 |
|
|
|
| 2141 |
|
|
static enum XML_Error PTRCALL |
| 2142 |
|
|
externalEntityInitProcessor2(XML_Parser parser, |
| 2143 |
|
|
|
| 2144 |
|
|
|
| 2145 |
|
|
|
| 2146 |
|
|
|
| 2147 |
|
|
const char *next = start; /* XmlContentTok doesn't always set the last arg */ |
| 2148 |
|
|
int tok = XmlContentTok(encoding, start, end, &next); |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
externalEntityInitProcessor2 |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load eliminated by PRE |
externalEntityInitProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
externalEntityInitProcessor |
| 2149 |
|
|
|
| 2150 |
|
|
|
| 2151 |
|
|
/* If we are at the end of the buffer, this would cause the next stage, |
| 2152 |
|
|
i.e. externalEntityInitProcessor3, to pass control directly to |
| 2153 |
|
|
doContent (by detecting XML_TOK_NONE) without processing any xml text |
| 2154 |
|
|
declaration - causing the error XML_ERROR_MISPLACED_XML_PI in doContent. |
| 2155 |
|
|
|
| 2156 |
|
|
if (next == end && !ps_finalBuffer) { |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalEntityInitProcessor2 |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor2 |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor |
| 2157 |
|
|
|
| 2158 |
|
|
|
| 2159 |
|
|
|
| 2160 |
|
|
|
| 2161 |
|
|
|
| 2162 |
|
|
|
| 2163 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor2 |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor |
| 2164 |
|
|
|
| 2165 |
|
|
|
| 2166 |
|
|
|
| 2167 |
|
|
|
| 2168 |
|
|
return XML_ERROR_UNCLOSED_TOKEN; |
| 2169 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 2170 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor2 |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor |
| 2171 |
|
|
|
| 2172 |
|
|
|
| 2173 |
|
|
|
| 2174 |
|
|
|
| 2175 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 2176 |
|
|
|
| 2177 |
|
|
processor = externalEntityInitProcessor3; |
| 2178 |
|
|
return externalEntityInitProcessor3(parser, start, end, endPtr); |
|
|
inline |
externalEntityInitProcessor3 too costly to inline (cost=500, threshold=250) |
externalEntityInitProcessor2 |
|
|
inline |
externalEntityInitProcessor3 will not be inlined into externalEntityInitProcessor2 |
externalEntityInitProcessor2 |
|
|
inline |
externalEntityInitProcessor3 too costly to inline (cost=500, threshold=250) |
externalEntityInitProcessor |
|
|
inline |
externalEntityInitProcessor3 will not be inlined into externalEntityInitProcessor |
externalEntityInitProcessor |
| 2179 |
|
|
|
| 2180 |
|
|
|
| 2181 |
|
|
static enum XML_Error PTRCALL |
| 2182 |
|
|
externalEntityInitProcessor3(XML_Parser parser, |
| 2183 |
|
|
|
| 2184 |
|
|
|
| 2185 |
|
|
|
| 2186 |
|
|
|
| 2187 |
|
|
|
| 2188 |
|
|
const char *next = start; /* XmlContentTok doesn't always set the last arg */ |
| 2189 |
|
|
|
| 2190 |
|
|
tok = XmlContentTok(encoding, start, end, &next); |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
externalEntityInitProcessor3 |
| 2191 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
| 2192 |
|
|
|
| 2193 |
|
|
|
| 2194 |
|
|
|
| 2195 |
|
|
|
| 2196 |
|
|
|
| 2197 |
|
|
result = processXmlDecl(parser, 1, start, next); |
|
|
inline |
processXmlDecl too costly to inline (cost=645, threshold=625) |
externalEntityInitProcessor3 |
|
|
inline |
processXmlDecl will not be inlined into externalEntityInitProcessor3 |
externalEntityInitProcessor3 |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
externalEntityInitProcessor3 |
| 2198 |
|
|
if (result != XML_ERROR_NONE) |
| 2199 |
|
|
|
| 2200 |
|
|
|
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
| 2201 |
|
|
|
| 2202 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
externalEntityInitProcessor3 |
| 2203 |
|
|
|
| 2204 |
|
|
|
| 2205 |
|
|
return XML_ERROR_ABORTED; |
| 2206 |
|
|
|
| 2207 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalEntityInitProcessor3 |
| 2208 |
|
|
|
| 2209 |
|
|
|
| 2210 |
|
|
|
| 2211 |
|
|
|
| 2212 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
| 2213 |
|
|
|
| 2214 |
|
|
|
| 2215 |
|
|
|
| 2216 |
|
|
return XML_ERROR_UNCLOSED_TOKEN; |
| 2217 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 2218 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
| 2219 |
|
|
|
| 2220 |
|
|
|
| 2221 |
|
|
|
| 2222 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 2223 |
|
|
|
| 2224 |
|
|
processor = externalEntityContentProcessor; |
| 2225 |
|
|
|
| 2226 |
|
|
return externalEntityContentProcessor(parser, start, end, endPtr); |
|
|
inline |
externalEntityContentProcessor can be inlined into externalEntityInitProcessor3 with cost=85 (threshold=250) |
externalEntityInitProcessor3 |
|
|
inline |
externalEntityContentProcessor inlined into externalEntityInitProcessor3 |
externalEntityInitProcessor3 |
| 2227 |
|
|
|
| 2228 |
|
|
|
| 2229 |
|
|
static enum XML_Error PTRCALL |
| 2230 |
|
|
externalEntityContentProcessor(XML_Parser parser, |
| 2231 |
|
|
|
| 2232 |
|
|
|
| 2233 |
|
|
|
| 2234 |
|
|
|
| 2235 |
|
|
enum XML_Error result = doContent(parser, 1, encoding, start, end, |
|
|
inline |
doContent too costly to inline (cost=630, threshold=625) |
externalEntityContentProcessor |
|
|
inline |
doContent will not be inlined into externalEntityContentProcessor |
externalEntityContentProcessor |
|
|
inline |
doContent too costly to inline (cost=630, threshold=625) |
externalEntityInitProcessor3 |
|
|
inline |
doContent will not be inlined into externalEntityInitProcessor3 |
externalEntityInitProcessor3 |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
inline |
doContent too costly to inline (cost=630, threshold=625) |
cdataSectionProcessor |
|
|
inline |
doContent will not be inlined into cdataSectionProcessor |
cdataSectionProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
cdataSectionProcessor |
| 2236 |
|
|
endPtr, (XML_Bool)!ps_finalBuffer); |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalEntityInitProcessor3 |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
cdataSectionProcessor |
| 2237 |
|
|
if (result == XML_ERROR_NONE) { |
| 2238 |
|
|
if (!storeRawNames(parser)) |
|
|
inline |
Not inlining. Cost of inlining storeRawNames increases the cost of inlining externalEntityContentProcessor in other contexts |
externalEntityContentProcessor |
|
|
inline |
storeRawNames will not be inlined into externalEntityContentProcessor |
externalEntityContentProcessor |
|
|
inline |
storeRawNames can be inlined into externalEntityInitProcessor3 with cost=200 (threshold=250) |
externalEntityInitProcessor3 |
|
|
inline |
storeRawNames inlined into externalEntityInitProcessor3 |
externalEntityInitProcessor3 |
|
|
inline |
storeRawNames can be inlined into cdataSectionProcessor with cost=200 (threshold=250) |
cdataSectionProcessor |
|
|
inline |
storeRawNames inlined into cdataSectionProcessor |
cdataSectionProcessor |
| 2239 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2240 |
|
|
|
| 2241 |
|
|
|
| 2242 |
|
|
|
| 2243 |
|
|
|
| 2244 |
|
|
|
| 2245 |
|
|
doContent(XML_Parser parser, |
| 2246 |
|
|
|
| 2247 |
|
|
|
| 2248 |
|
|
|
| 2249 |
|
|
|
| 2250 |
|
|
|
| 2251 |
|
|
|
| 2252 |
|
|
|
| 2253 |
|
|
/* save one level of indirection */ |
| 2254 |
|
|
|
| 2255 |
|
|
|
| 2256 |
|
|
|
| 2257 |
|
|
|
| 2258 |
|
|
|
| 2259 |
|
|
|
| 2260 |
|
|
eventEndPP = &eventEndPtr; |
| 2261 |
|
|
|
| 2262 |
|
|
|
| 2263 |
|
|
eventPP = &(openInternalEntities->internalEventPtr); |
| 2264 |
|
|
eventEndPP = &(openInternalEntities->internalEventEndPtr); |
| 2265 |
|
|
|
| 2266 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
doContent |
| 2267 |
|
|
|
| 2268 |
|
|
|
| 2269 |
|
|
const char *next = s; /* XmlContentTok doesn't always set the last arg */ |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
| 2270 |
|
|
int tok = XmlContentTok(enc, s, end, &next); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
doContent |
| 2271 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doContent |
| 2272 |
|
|
|
| 2273 |
|
|
case XML_TOK_TRAILING_CR: |
| 2274 |
|
|
|
| 2275 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2276 |
|
|
|
| 2277 |
|
|
|
| 2278 |
|
|
|
| 2279 |
|
|
if (characterDataHandler) { |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2280 |
|
|
|
| 2281 |
|
|
characterDataHandler(handlerArg, &c, 1); |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2282 |
|
|
|
| 2283 |
|
|
|
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2284 |
|
|
reportDefault(parser, enc, s, end); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
| 2285 |
|
|
/* We are at the end of the final buffer, should we check for |
| 2286 |
|
|
XML_SUSPENDED, XML_FINISHED? |
| 2287 |
|
|
|
| 2288 |
|
|
|
| 2289 |
|
|
return XML_ERROR_NO_ELEMENTS; |
| 2290 |
|
|
if (tagLevel != startTagLevel) |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2291 |
|
|
return XML_ERROR_ASYNC_ENTITY; |
| 2292 |
|
|
|
| 2293 |
|
|
|
| 2294 |
|
|
|
| 2295 |
|
|
|
| 2296 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2297 |
|
|
|
| 2298 |
|
|
|
| 2299 |
|
|
|
| 2300 |
|
|
if (tagLevel != startTagLevel) |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2301 |
|
|
return XML_ERROR_ASYNC_ENTITY; |
| 2302 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2303 |
|
|
|
| 2304 |
|
|
|
| 2305 |
|
|
return XML_ERROR_NO_ELEMENTS; |
| 2306 |
|
|
|
| 2307 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of load |
doContent |
| 2308 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 2309 |
|
|
|
| 2310 |
|
|
|
| 2311 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2312 |
|
|
|
| 2313 |
|
|
|
| 2314 |
|
|
return XML_ERROR_UNCLOSED_TOKEN; |
| 2315 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 2316 |
|
|
|
| 2317 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2318 |
|
|
|
| 2319 |
|
|
|
| 2320 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 2321 |
|
|
|
| 2322 |
|
|
|
| 2323 |
|
|
|
| 2324 |
|
|
|
| 2325 |
|
|
XML_Char ch = (XML_Char) XmlPredefinedEntityName(enc, |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doContent |
| 2326 |
|
|
s + enc->minBytesPerChar, |
| 2327 |
|
|
next - enc->minBytesPerChar); |
| 2328 |
|
|
|
| 2329 |
|
|
if (characterDataHandler) |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doContent |
| 2330 |
|
|
characterDataHandler(handlerArg, &ch, 1); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2331 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doContent |
| 2332 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2333 |
|
|
|
| 2334 |
|
|
|
| 2335 |
|
|
name = poolStoreString(&dtd->pool, enc, |
|
|
inline |
poolStoreString can be inlined into doContent with cost=220 (threshold=250) |
doContent |
|
|
inline |
poolStoreString inlined into doContent |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
| 2336 |
|
|
s + enc->minBytesPerChar, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2337 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2338 |
|
|
|
| 2339 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2340 |
|
|
entity = (ENTITY *)lookup(parser, &dtd->generalEntities, name, 0); |
|
|
inline |
lookup can be inlined into doContent with cost=205 (threshold=250) |
doContent |
|
|
inline |
lookup inlined into doContent |
doContent |
| 2341 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
doContent |
| 2342 |
|
|
/* First, determine if a check for an existing declaration is needed; |
| 2343 |
|
|
if yes, check that the entity exists, and that it is internal, |
| 2344 |
|
|
otherwise call the skipped entity or default handler. |
| 2345 |
|
|
|
| 2346 |
|
|
if (!dtd->hasParamEntityRefs || dtd->standalone) { |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
| 2347 |
|
|
|
| 2348 |
|
|
return XML_ERROR_UNDEFINED_ENTITY; |
| 2349 |
|
|
else if (!entity->is_internal) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
| 2350 |
|
|
return XML_ERROR_ENTITY_DECLARED_IN_PE; |
| 2351 |
|
|
|
| 2352 |
|
|
|
| 2353 |
|
|
if (skippedEntityHandler) |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2354 |
|
|
skippedEntityHandler(handlerArg, name, 0); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2355 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2356 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doContent |
| 2357 |
|
|
|
| 2358 |
|
|
|
| 2359 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
| 2360 |
|
|
return XML_ERROR_RECURSIVE_ENTITY_REF; |
| 2361 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2362 |
|
|
return XML_ERROR_BINARY_ENTITY_REF; |
| 2363 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2364 |
|
|
|
| 2365 |
|
|
if (!defaultExpandInternalEntities) { |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
| 2366 |
|
|
if (skippedEntityHandler) |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2367 |
|
|
skippedEntityHandler(handlerArg, entity->name, 0); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2368 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2369 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doContent |
| 2370 |
|
|
|
| 2371 |
|
|
|
| 2372 |
|
|
result = processInternalEntity(parser, entity, XML_FALSE); |
|
|
inline |
processInternalEntity too costly to inline (cost=365, threshold=250) |
doContent |
|
|
inline |
processInternalEntity will not be inlined into doContent |
doContent |
| 2373 |
|
|
if (result != XML_ERROR_NONE) |
| 2374 |
|
|
|
| 2375 |
|
|
|
| 2376 |
|
|
else if (externalEntityRefHandler) { |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by store |
doContent |
| 2377 |
|
|
|
| 2378 |
|
|
|
| 2379 |
|
|
context = getContext(parser); |
|
|
inline |
getContext can be inlined into doContent with cost=-13930 (threshold=250) |
doContent |
|
|
inline |
getContext inlined into doContent |
doContent |
| 2380 |
|
|
entity->open = XML_FALSE; |
| 2381 |
|
|
|
| 2382 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2383 |
|
|
if (!externalEntityRefHandler(externalEntityRefHandlerArg, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by store |
doContent |
| 2384 |
|
|
|
| 2385 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2386 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2387 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2388 |
|
|
return XML_ERROR_EXTERNAL_ENTITY_HANDLING; |
| 2389 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
| 2390 |
|
|
|
| 2391 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2392 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doContent |
| 2393 |
|
|
|
| 2394 |
|
|
|
| 2395 |
|
|
case XML_TOK_START_TAG_NO_ATTS: |
| 2396 |
|
|
|
| 2397 |
|
|
case XML_TOK_START_TAG_WITH_ATTS: |
| 2398 |
|
|
|
| 2399 |
|
|
|
| 2400 |
|
|
|
| 2401 |
|
|
|
|
|
licm |
hosting bitcast |
doContent |
| 2402 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.tag* not eliminated because it is clobbered by store |
doContent |
| 2403 |
|
|
|
| 2404 |
|
|
freeTagList = freeTagList->parent; |
|
|
licm |
hosting bitcast |
doContent |
| 2405 |
|
|
|
| 2406 |
|
|
|
| 2407 |
|
|
tag = (TAG *)MALLOC(sizeof(TAG)); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by store |
doContent |
| 2408 |
|
|
|
| 2409 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2410 |
|
|
tag->buf = (char *)MALLOC(INIT_TAG_BUF_SIZE); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* (i64)* not eliminated in favor of load because it is clobbered by call |
doContent |
| 2411 |
|
|
|
| 2412 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
doContent |
| 2413 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2414 |
|
|
|
| 2415 |
|
|
tag->bufEnd = tag->buf + INIT_TAG_BUF_SIZE; |
| 2416 |
|
|
|
| 2417 |
|
|
|
| 2418 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
| 2419 |
|
|
|
| 2420 |
|
|
tag->name.localPart = NULL; |
| 2421 |
|
|
|
| 2422 |
|
|
tag->rawName = s + enc->minBytesPerChar; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2423 |
|
|
tag->rawNameLength = XmlNameLength(enc, tag->rawName); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by call |
doContent |
| 2424 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2425 |
|
|
|
| 2426 |
|
|
const char *rawNameEnd = tag->rawName + tag->rawNameLength; |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 eliminated in favor of call |
doContent |
| 2427 |
|
|
const char *fromPtr = tag->rawName; |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
hosting bitcast |
doContent |
| 2428 |
|
|
toPtr = (XML_Char *)tag->buf; |
|
|
licm |
hosting bitcast |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
| 2429 |
|
|
|
| 2430 |
|
|
|
| 2431 |
|
|
|
| 2432 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by call |
doContent |
| 2433 |
|
|
|
| 2434 |
|
|
(ICHAR **)&toPtr, (ICHAR *)tag->bufEnd - 1); |
| 2435 |
|
|
convLen = (int)(toPtr - (XML_Char *)tag->buf); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
| 2436 |
|
|
if (fromPtr == rawNameEnd) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 2437 |
|
|
tag->name.strLen = convLen; |
| 2438 |
|
|
|
| 2439 |
|
|
|
| 2440 |
|
|
bufSize = (int)(tag->bufEnd - tag->buf) << 1; |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
| 2441 |
|
|
|
| 2442 |
|
|
char *temp = (char *)REALLOC(tag->buf, bufSize); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
doContent |
| 2443 |
|
|
|
| 2444 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2445 |
|
|
|
| 2446 |
|
|
tag->bufEnd = temp + bufSize; |
| 2447 |
|
|
toPtr = (XML_Char *)temp + convLen; |
| 2448 |
|
|
|
| 2449 |
|
|
|
| 2450 |
|
|
|
| 2451 |
|
|
tag->name.str = (XML_Char *)tag->buf; |
|
|
gvn |
load of type i64 eliminated in favor of phi |
doContent |
| 2452 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* eliminated in favor of phi |
doContent |
| 2453 |
|
|
result = storeAtts(parser, enc, s, &(tag->name), &(tag->bindings)); |
|
|
inline |
storeAtts too costly to inline (cost=630, threshold=625) |
doContent |
|
|
inline |
storeAtts will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2454 |
|
|
|
| 2455 |
|
|
|
| 2456 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i8**)* not eliminated because it is clobbered by call |
doContent |
| 2457 |
|
|
startElementHandler(handlerArg, tag->name.str, |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2458 |
|
|
(const XML_Char **)atts); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8** not eliminated because it is clobbered by call |
doContent |
| 2459 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doContent |
| 2460 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2461 |
|
|
|
|
|
inline |
poolClear can be inlined into doContent with cost=30 (threshold=250) |
doContent |
|
|
inline |
poolClear inlined into doContent |
doContent |
| 2462 |
|
|
|
| 2463 |
|
|
|
| 2464 |
|
|
case XML_TOK_EMPTY_ELEMENT_NO_ATTS: |
| 2465 |
|
|
|
| 2466 |
|
|
case XML_TOK_EMPTY_ELEMENT_WITH_ATTS: |
| 2467 |
|
|
|
| 2468 |
|
|
const char *rawName = s + enc->minBytesPerChar; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2469 |
|
|
|
| 2470 |
|
|
BINDING *bindings = NULL; |
|
|
licm |
hosting bitcast |
doContent |
| 2471 |
|
|
XML_Bool noElmHandlers = XML_TRUE; |
| 2472 |
|
|
|
|
|
licm |
hosting bitcast |
doContent |
| 2473 |
|
|
name.str = poolStoreString(&tempPool, enc, rawName, |
|
|
inline |
poolStoreString can be inlined into doContent with cost=220 (threshold=250) |
doContent |
|
|
inline |
poolStoreString inlined into doContent |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
| 2474 |
|
|
rawName + XmlNameLength(enc, rawName)); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by store |
doContent |
| 2475 |
|
|
|
| 2476 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2477 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
| 2478 |
|
|
result = storeAtts(parser, enc, s, &name, &bindings); |
|
|
inline |
storeAtts too costly to inline (cost=630, threshold=625) |
doContent |
|
|
inline |
storeAtts will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2479 |
|
|
|
| 2480 |
|
|
|
| 2481 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2482 |
|
|
if (startElementHandler) { |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i8**)* not eliminated because it is clobbered by call |
doContent |
| 2483 |
|
|
startElementHandler(handlerArg, name.str, (const XML_Char **)atts); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8** not eliminated because it is clobbered by call |
doContent |
| 2484 |
|
|
noElmHandlers = XML_FALSE; |
| 2485 |
|
|
|
| 2486 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
| 2487 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i8**)* not eliminated in favor of load because it is clobbered by call |
doContent |
| 2488 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by store |
doContent |
| 2489 |
|
|
endElementHandler(handlerArg, name.str); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load eliminated by PRE |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
| 2490 |
|
|
noElmHandlers = XML_FALSE; |
| 2491 |
|
|
|
| 2492 |
|
|
if (noElmHandlers && defaultHandler) |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doContent |
| 2493 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2494 |
|
|
|
|
|
inline |
poolClear can be inlined into doContent with cost=-14970 (threshold=250) |
doContent |
|
|
inline |
poolClear inlined into doContent |
doContent |
| 2495 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.binding* eliminated in favor of inttoptr |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 2496 |
|
|
|
| 2497 |
|
|
if (endNamespaceDeclHandler) |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
| 2498 |
|
|
endNamespaceDeclHandler(handlerArg, b->prefix->name); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
loop-vectorize |
loop not vectorized: control flow cannot be substituted for a select |
doContent |
| 2499 |
|
|
bindings = bindings->nextTagBinding; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
gvn |
load of type %struct.binding* eliminated in favor of phi |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
| 2500 |
|
|
b->nextTagBinding = freeBindingList; |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
| 2501 |
|
|
|
| 2502 |
|
|
b->prefix->binding = b->prevPrefixBinding; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
doContent |
| 2503 |
|
|
|
| 2504 |
|
|
|
| 2505 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2506 |
|
|
return epilogProcessor(parser, next, end, nextPtr); |
|
|
inline |
epilogProcessor too costly to inline (cost=630, threshold=625) |
doContent |
|
|
inline |
epilogProcessor will not be inlined into doContent |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2507 |
|
|
|
| 2508 |
|
|
|
| 2509 |
|
|
if (tagLevel == startTagLevel) |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2510 |
|
|
return XML_ERROR_ASYNC_ENTITY; |
| 2511 |
|
|
|
| 2512 |
|
|
|
| 2513 |
|
|
|
| 2514 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.tag* not eliminated because it is clobbered by store |
doContent |
| 2515 |
|
|
|
|
|
licm |
hosting bitcast |
doContent |
| 2516 |
|
|
tag->parent = freeTagList; |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
| 2517 |
|
|
|
| 2518 |
|
|
rawName = s + enc->minBytesPerChar*2; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2519 |
|
|
len = XmlNameLength(enc, rawName); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by store |
doContent |
| 2520 |
|
|
if (len != tag->rawNameLength |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2521 |
|
|
|| memcmp(tag->rawName, rawName, len) != 0) { |
|
|
inline |
memcmp will not be inlined into doContent because its definition is unavailable |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2522 |
|
|
|
| 2523 |
|
|
return XML_ERROR_TAG_MISMATCH; |
| 2524 |
|
|
|
| 2525 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2526 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
| 2527 |
|
|
const XML_Char *localPart; |
| 2528 |
|
|
|
| 2529 |
|
|
|
| 2530 |
|
|
localPart = tag->name.localPart; |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2531 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
| 2532 |
|
|
/* localPart and prefix may have been overwritten in |
| 2533 |
|
|
tag->name.str, since this points to the binding->uri |
| 2534 |
|
|
buffer which gets re-used; so we have to add them again |
| 2535 |
|
|
|
| 2536 |
|
|
uri = (XML_Char *)tag->name.str + tag->name.uriLen; |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2537 |
|
|
/* don't need to check for space - already done in storeAtts() */ |
| 2538 |
|
|
while (*localPart) *uri++ = *localPart++; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 2539 |
|
|
prefix = (XML_Char *)tag->name.prefix; |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2540 |
|
|
if (ns_triplets && prefix) { |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
| 2541 |
|
|
*uri++ = namespaceSeparator; |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
| 2542 |
|
|
while (*prefix) *uri++ = *prefix++; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 2543 |
|
|
|
| 2544 |
|
|
|
| 2545 |
|
|
|
| 2546 |
|
|
endElementHandler(handlerArg, tag->name.str); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load eliminated by PRE |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2547 |
|
|
|
| 2548 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doContent |
| 2549 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2550 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.binding* eliminated in favor of inttoptr |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 2551 |
|
|
BINDING *b = tag->bindings; |
| 2552 |
|
|
if (endNamespaceDeclHandler) |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated because it is clobbered by store |
doContent |
| 2553 |
|
|
endNamespaceDeclHandler(handlerArg, b->prefix->name); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
loop-vectorize |
loop not vectorized: control flow cannot be substituted for a select |
doContent |
| 2554 |
|
|
tag->bindings = tag->bindings->nextTagBinding; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load eliminated by PRE |
doContent |
| 2555 |
|
|
b->nextTagBinding = freeBindingList; |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
| 2556 |
|
|
|
| 2557 |
|
|
b->prefix->binding = b->prevPrefixBinding; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
doContent |
| 2558 |
|
|
|
| 2559 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2560 |
|
|
return epilogProcessor(parser, next, end, nextPtr); |
|
|
inline |
epilogProcessor too costly to inline (cost=630, threshold=625) |
doContent |
|
|
inline |
epilogProcessor will not be inlined into doContent |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2561 |
|
|
|
| 2562 |
|
|
|
| 2563 |
|
|
|
| 2564 |
|
|
|
| 2565 |
|
|
int n = XmlCharRefNumber(enc, s); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
| 2566 |
|
|
|
| 2567 |
|
|
return XML_ERROR_BAD_CHAR_REF; |
| 2568 |
|
|
if (characterDataHandler) { |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doContent |
| 2569 |
|
|
XML_Char buf[XML_ENCODE_MAX]; |
|
|
licm |
hosting getelementptr |
doContent |
| 2570 |
|
|
characterDataHandler(handlerArg, buf, XmlEncode(n, (ICHAR *)buf)); |
|
|
inline |
PyExpat_XmlUtf8Encode will not be inlined into doContent because its definition is unavailable |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2571 |
|
|
|
| 2572 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doContent |
| 2573 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2574 |
|
|
|
| 2575 |
|
|
|
| 2576 |
|
|
|
| 2577 |
|
|
return XML_ERROR_MISPLACED_XML_PI; |
| 2578 |
|
|
case XML_TOK_DATA_NEWLINE: |
| 2579 |
|
|
if (characterDataHandler) { |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2580 |
|
|
|
| 2581 |
|
|
characterDataHandler(handlerArg, &c, 1); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2582 |
|
|
|
| 2583 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2584 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doContent |
| 2585 |
|
|
|
| 2586 |
|
|
case XML_TOK_CDATA_SECT_OPEN: |
| 2587 |
|
|
|
| 2588 |
|
|
|
| 2589 |
|
|
if (startCdataSectionHandler) |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by store |
doContent |
| 2590 |
|
|
startCdataSectionHandler(handlerArg); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2591 |
|
|
|
| 2592 |
|
|
/* Suppose you doing a transformation on a document that involves |
| 2593 |
|
|
changing only the character data. You set up a defaultHandler |
| 2594 |
|
|
and a characterDataHandler. The defaultHandler simply copies |
| 2595 |
|
|
characters through. The characterDataHandler does the |
| 2596 |
|
|
transformation and writes the characters out escaping them as |
| 2597 |
|
|
necessary. This case will fail to work if we leave out the |
| 2598 |
|
|
following two lines (because & and < inside CDATA sections will |
| 2599 |
|
|
|
| 2600 |
|
|
|
| 2601 |
|
|
However, now we have a start/endCdataSectionHandler, so it seems |
| 2602 |
|
|
easier to let the user deal with this. |
| 2603 |
|
|
|
| 2604 |
|
|
else if (characterDataHandler) |
| 2605 |
|
|
characterDataHandler(handlerArg, dataBuf, 0); |
| 2606 |
|
|
|
| 2607 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2608 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doContent |
| 2609 |
|
|
result = doCdataSection(parser, enc, &next, end, nextPtr, haveMore); |
|
|
inline |
doCdataSection too costly to inline (cost=640, threshold=625) |
doContent |
|
|
inline |
doCdataSection will not be inlined into doContent |
doContent |
| 2610 |
|
|
if (result != XML_ERROR_NONE) |
| 2611 |
|
|
|
| 2612 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2613 |
|
|
processor = cdataSectionProcessor; |
| 2614 |
|
|
|
| 2615 |
|
|
|
| 2616 |
|
|
|
| 2617 |
|
|
|
| 2618 |
|
|
case XML_TOK_TRAILING_RSQB: |
| 2619 |
|
|
|
| 2620 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2621 |
|
|
|
| 2622 |
|
|
|
| 2623 |
|
|
if (characterDataHandler) { |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2624 |
|
|
if (MUST_CONVERT(enc, s)) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
| 2625 |
|
|
ICHAR *dataPtr = (ICHAR *)dataBuf; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
| 2626 |
|
|
XmlConvert(enc, &s, end, &dataPtr, (ICHAR *)dataBufEnd); |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2627 |
|
|
characterDataHandler(handlerArg, dataBuf, |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2628 |
|
|
(int)(dataPtr - (ICHAR *)dataBuf)); |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doContent |
| 2629 |
|
|
|
| 2630 |
|
|
|
| 2631 |
|
|
characterDataHandler(handlerArg, |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2632 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
| 2633 |
|
|
(int)((XML_Char *)end - (XML_Char *)s)); |
| 2634 |
|
|
|
| 2635 |
|
|
|
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2636 |
|
|
reportDefault(parser, enc, s, end); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
| 2637 |
|
|
/* We are at the end of the final buffer, should we check for |
| 2638 |
|
|
XML_SUSPENDED, XML_FINISHED? |
| 2639 |
|
|
|
| 2640 |
|
|
if (startTagLevel == 0) { |
| 2641 |
|
|
|
| 2642 |
|
|
return XML_ERROR_NO_ELEMENTS; |
| 2643 |
|
|
|
| 2644 |
|
|
if (tagLevel != startTagLevel) { |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2645 |
|
|
|
| 2646 |
|
|
return XML_ERROR_ASYNC_ENTITY; |
| 2647 |
|
|
|
| 2648 |
|
|
|
| 2649 |
|
|
|
| 2650 |
|
|
|
| 2651 |
|
|
|
| 2652 |
|
|
XML_CharacterDataHandler charDataHandler = characterDataHandler; |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2653 |
|
|
|
| 2654 |
|
|
if (MUST_CONVERT(enc, s)) { |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
| 2655 |
|
|
|
| 2656 |
|
|
ICHAR *dataPtr = (ICHAR *)dataBuf; |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting bitcast |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 2657 |
|
|
XmlConvert(enc, &s, next, &dataPtr, (ICHAR *)dataBufEnd); |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load eliminated by PRE |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2658 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
| 2659 |
|
|
charDataHandler(handlerArg, dataBuf, |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2660 |
|
|
(int)(dataPtr - (ICHAR *)dataBuf)); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doContent |
| 2661 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 2662 |
|
|
|
| 2663 |
|
|
|
| 2664 |
|
|
|
| 2665 |
|
|
|
| 2666 |
|
|
|
| 2667 |
|
|
charDataHandler(handlerArg, |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 2668 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
| 2669 |
|
|
(int)((XML_Char *)next - (XML_Char *)s)); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 eliminated in favor of load |
doContent |
| 2670 |
|
|
|
| 2671 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2672 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doContent |
| 2673 |
|
|
|
| 2674 |
|
|
|
| 2675 |
|
|
|
| 2676 |
|
|
if (!reportProcessingInstruction(parser, enc, s, next)) |
|
|
inline |
reportProcessingInstruction too costly to inline (cost=635, threshold=625) |
doContent |
|
|
inline |
reportProcessingInstruction will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doContent |
| 2677 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2678 |
|
|
|
| 2679 |
|
|
|
| 2680 |
|
|
if (!reportComment(parser, enc, s, next)) |
|
|
inline |
reportComment too costly to inline (cost=630, threshold=625) |
doContent |
|
|
inline |
reportComment will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doContent |
| 2681 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2682 |
|
|
|
| 2683 |
|
|
|
| 2684 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doContent |
| 2685 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doContent with cost=165 (threshold=250) |
doContent |
|
|
inline |
reportDefault inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doContent |
| 2686 |
|
|
|
| 2687 |
|
|
|
| 2688 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
| 2689 |
|
|
|
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doContent |
| 2690 |
|
|
|
| 2691 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by store |
doContent |
| 2692 |
|
|
|
| 2693 |
|
|
|
| 2694 |
|
|
return XML_ERROR_ABORTED; |
| 2695 |
|
|
|
| 2696 |
|
|
|
| 2697 |
|
|
|
| 2698 |
|
|
|
| 2699 |
|
|
|
| 2700 |
|
|
|
| 2701 |
|
|
/* Precondition: all arguments must be non-NULL; |
| 2702 |
|
|
|
| 2703 |
|
|
|
| 2704 |
|
|
- check attributes for well-formedness |
| 2705 |
|
|
- generate namespace aware attribute names (URI, prefix) |
| 2706 |
|
|
- build list of attributes for startElementHandler |
| 2707 |
|
|
|
| 2708 |
|
|
- process namespace declarations (check and report them) |
| 2709 |
|
|
- generate namespace aware element name (URI, prefix) |
| 2710 |
|
|
|
| 2711 |
|
|
|
| 2712 |
|
|
storeAtts(XML_Parser parser, const ENCODING *enc, |
| 2713 |
|
|
const char *attStr, TAG_NAME *tagNamePtr, |
| 2714 |
|
|
|
| 2715 |
|
|
|
| 2716 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
| 2717 |
|
|
ELEMENT_TYPE *elementType; |
| 2718 |
|
|
|
| 2719 |
|
|
const XML_Char **appAtts; /* the attribute list for the application */ |
| 2720 |
|
|
|
| 2721 |
|
|
|
| 2722 |
|
|
|
| 2723 |
|
|
|
| 2724 |
|
|
|
| 2725 |
|
|
|
| 2726 |
|
|
|
| 2727 |
|
|
const XML_Char *localPart; |
| 2728 |
|
|
|
| 2729 |
|
|
/* lookup the element type name */ |
| 2730 |
|
|
elementType = (ELEMENT_TYPE *)lookup(parser, &dtd->elementTypes, tagNamePtr->str,0); |
|
|
inline |
lookup can be inlined into storeAtts with cost=205 (threshold=250) |
storeAtts |
|
|
inline |
lookup inlined into storeAtts |
storeAtts |
| 2731 |
|
|
|
| 2732 |
|
|
const XML_Char *name = poolCopyString(&dtd->pool, tagNamePtr->str); |
|
|
inline |
poolCopyString can be inlined into storeAtts with cost=75 (threshold=250) |
storeAtts |
|
|
inline |
poolCopyString inlined into storeAtts |
storeAtts |
|
|
gvn |
load of type i8* eliminated in favor of load |
storeAtts |
| 2733 |
|
|
|
| 2734 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2735 |
|
|
elementType = (ELEMENT_TYPE *)lookup(parser, &dtd->elementTypes, name, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
storeAtts |
|
|
inline |
lookup will not be inlined into storeAtts |
storeAtts |
| 2736 |
|
|
|
| 2737 |
|
|
|
| 2738 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2739 |
|
|
if (ns && !setElementTypePrefix(parser, elementType)) |
|
|
inline |
setElementTypePrefix too costly to inline (cost=285, threshold=250) |
storeAtts |
|
|
inline |
setElementTypePrefix will not be inlined into storeAtts |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
| 2740 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2741 |
|
|
|
| 2742 |
|
|
nDefaultAtts = elementType->nDefaultAtts; |
| 2743 |
|
|
|
| 2744 |
|
|
/* get the attributes from the tokenizer */ |
| 2745 |
|
|
n = XmlGetAttributes(enc, attStr, attsSize, atts); |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i32, %struct.ATTRIBUTE*)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i32, %struct.ATTRIBUTE*)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.ATTRIBUTE* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.ATTRIBUTE* not eliminated because it is clobbered by call |
storeAtts |
| 2746 |
|
|
if (n + nDefaultAtts > attsSize) { |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
storeAtts |
| 2747 |
|
|
int oldAttsSize = attsSize; |
| 2748 |
|
|
|
| 2749 |
|
|
|
| 2750 |
|
|
|
| 2751 |
|
|
|
| 2752 |
|
|
attsSize = n + nDefaultAtts + INIT_ATTS_SIZE; |
| 2753 |
|
|
temp = (ATTRIBUTE *)REALLOC((void *)atts, attsSize * sizeof(ATTRIBUTE)); |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
| 2754 |
|
|
|
| 2755 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2756 |
|
|
|
| 2757 |
|
|
|
| 2758 |
|
|
temp2 = (XML_AttrInfo *)REALLOC((void *)attInfo, attsSize * sizeof(XML_AttrInfo)); |
| 2759 |
|
|
|
| 2760 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2761 |
|
|
|
| 2762 |
|
|
|
| 2763 |
|
|
|
| 2764 |
|
|
XmlGetAttributes(enc, attStr, n, atts); |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i32, %struct.ATTRIBUTE*)* not eliminated in favor of load because it is clobbered by call |
storeAtts |
| 2765 |
|
|
|
| 2766 |
|
|
|
| 2767 |
|
|
appAtts = (const XML_Char **)atts; |
|
|
gvn |
load of type i8** not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8** not eliminated because it is clobbered by call |
storeAtts |
| 2768 |
|
|
for (i = 0; i < n; i++) { |
| 2769 |
|
|
ATTRIBUTE *currAtt = &atts[i]; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type %struct.ATTRIBUTE* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.ATTRIBUTE* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.ATTRIBUTE* not eliminated in favor of load because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.ATTRIBUTE* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load eliminated by PRE |
storeAtts |
| 2770 |
|
|
|
| 2771 |
|
|
XML_AttrInfo *currAttInfo = &attInfo[i]; |
| 2772 |
|
|
|
| 2773 |
|
|
/* add the name and value to the attribute list */ |
| 2774 |
|
|
ATTRIBUTE_ID *attId = getAttributeId(parser, enc, currAtt->name, |
|
|
inline |
getAttributeId too costly to inline (cost=630, threshold=625) |
storeAtts |
|
|
inline |
getAttributeId will not be inlined into storeAtts |
storeAtts |
| 2775 |
|
|
|
| 2776 |
|
|
+ XmlNameLength(enc, currAtt->name)); |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by store |
storeAtts |
| 2777 |
|
|
|
| 2778 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2779 |
|
|
|
| 2780 |
|
|
currAttInfo->nameStart = parseEndByteIndex - (parseEndPtr - currAtt->name); |
| 2781 |
|
|
currAttInfo->nameEnd = currAttInfo->nameStart + |
| 2782 |
|
|
XmlNameLength(enc, currAtt->name); |
| 2783 |
|
|
currAttInfo->valueStart = parseEndByteIndex - |
| 2784 |
|
|
(parseEndPtr - currAtt->valuePtr); |
| 2785 |
|
|
currAttInfo->valueEnd = parseEndByteIndex - (parseEndPtr - currAtt->valueEnd); |
| 2786 |
|
|
|
| 2787 |
|
|
/* Detect duplicate attributes by their QNames. This does not work when |
| 2788 |
|
|
namespace processing is turned on and different prefixes for the same |
| 2789 |
|
|
namespace are used. For this case we have a check further down. |
| 2790 |
|
|
|
| 2791 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
| 2792 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
storeAtts |
| 2793 |
|
|
|
|
|
gvn |
load of type %struct.ATTRIBUTE* not eliminated in favor of load because it is clobbered by call |
storeAtts |
| 2794 |
|
|
return XML_ERROR_DUPLICATE_ATTRIBUTE; |
| 2795 |
|
|
|
| 2796 |
|
|
|
| 2797 |
|
|
appAtts[attIndex++] = attId->name; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
| 2798 |
|
|
if (!atts[i].normalized) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type %struct.ATTRIBUTE* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
| 2799 |
|
|
|
| 2800 |
|
|
XML_Bool isCdata = XML_TRUE; |
| 2801 |
|
|
|
| 2802 |
|
|
/* figure out whether declared as other than CDATA */ |
| 2803 |
|
|
if (attId->maybeTokenized) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
licm |
hosting icmp |
storeAtts |
| 2804 |
|
|
|
| 2805 |
|
|
for (j = 0; j < nDefaultAtts; j++) { |
|
|
licm |
hosting icmp |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 2806 |
|
|
if (attId == elementType->defaultAtts[j].id) { |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
hosting load |
storeAtts |
| 2807 |
|
|
isCdata = elementType->defaultAtts[j].isCdata; |
| 2808 |
|
|
|
| 2809 |
|
|
|
| 2810 |
|
|
|
| 2811 |
|
|
|
| 2812 |
|
|
|
| 2813 |
|
|
/* normalize the attribute value */ |
| 2814 |
|
|
result = storeAttributeValue(parser, enc, isCdata, |
|
|
inline |
storeAttributeValue can be inlined into storeAtts with cost=135 (threshold=250) |
storeAtts |
|
|
inline |
storeAttributeValue inlined into storeAtts |
storeAtts |
| 2815 |
|
|
atts[i].valuePtr, atts[i].valueEnd, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type %struct.ATTRIBUTE* eliminated in favor of load |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2816 |
|
|
|
|
|
licm |
hosting getelementptr |
storeAtts |
| 2817 |
|
|
|
| 2818 |
|
|
|
| 2819 |
|
|
appAtts[attIndex] = poolStart(&tempPool); |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
hosting bitcast |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
| 2820 |
|
|
|
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
hosting bitcast |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
| 2821 |
|
|
|
| 2822 |
|
|
|
| 2823 |
|
|
/* the value did not need normalizing */ |
| 2824 |
|
|
appAtts[attIndex] = poolStoreString(&tempPool, enc, atts[i].valuePtr, |
|
|
inline |
poolStoreString can be inlined into storeAtts with cost=220 (threshold=250) |
storeAtts |
|
|
inline |
poolStoreString inlined into storeAtts |
storeAtts |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
| 2825 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2826 |
|
|
if (appAtts[attIndex] == 0) |
| 2827 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2828 |
|
|
|
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
hosting bitcast |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
| 2829 |
|
|
|
| 2830 |
|
|
/* handle prefixed attribute names */ |
| 2831 |
|
|
|
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by store |
storeAtts |
| 2832 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
| 2833 |
|
|
/* deal with namespace declarations here */ |
| 2834 |
|
|
enum XML_Error result = addBinding(parser, attId->prefix, attId, |
|
|
inline |
addBinding too costly to inline (cost=630, threshold=625) |
storeAtts |
|
|
inline |
addBinding will not be inlined into storeAtts |
storeAtts |
| 2835 |
|
|
appAtts[attIndex], bindingsPtr); |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2836 |
|
|
|
| 2837 |
|
|
|
| 2838 |
|
|
|
| 2839 |
|
|
|
| 2840 |
|
|
|
| 2841 |
|
|
/* deal with other prefixed names later */ |
| 2842 |
|
|
|
| 2843 |
|
|
|
| 2844 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
| 2845 |
|
|
|
| 2846 |
|
|
|
| 2847 |
|
|
|
| 2848 |
|
|
|
| 2849 |
|
|
|
| 2850 |
|
|
|
| 2851 |
|
|
/* set-up for XML_GetSpecifiedAttributeCount and XML_GetIdAttributeIndex */ |
| 2852 |
|
|
nSpecifiedAtts = attIndex; |
| 2853 |
|
|
if (elementType->idAtt && (elementType->idAtt->name)[-1]) { |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
storeAtts |
| 2854 |
|
|
for (i = 0; i < attIndex; i += 2) |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 2855 |
|
|
if (appAtts[i] == elementType->idAtt->name) { |
|
|
licm |
hosting load |
storeAtts |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
hosting load |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2856 |
|
|
|
| 2857 |
|
|
|
| 2858 |
|
|
|
| 2859 |
|
|
|
| 2860 |
|
|
|
| 2861 |
|
|
|
| 2862 |
|
|
|
| 2863 |
|
|
/* do attribute defaulting */ |
| 2864 |
|
|
for (i = 0; i < nDefaultAtts; i++) { |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 2865 |
|
|
const DEFAULT_ATTRIBUTE *da = elementType->defaultAtts + i; |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by store |
storeAtts |
| 2866 |
|
|
if (!(da->id->name)[-1] && da->value) { |
| 2867 |
|
|
|
| 2868 |
|
|
|
| 2869 |
|
|
enum XML_Error result = addBinding(parser, da->id->prefix, da->id, |
|
|
inline |
addBinding too costly to inline (cost=630, threshold=625) |
storeAtts |
|
|
inline |
addBinding will not be inlined into storeAtts |
storeAtts |
| 2870 |
|
|
|
| 2871 |
|
|
|
| 2872 |
|
|
|
| 2873 |
|
|
|
| 2874 |
|
|
|
| 2875 |
|
|
|
| 2876 |
|
|
|
| 2877 |
|
|
appAtts[attIndex++] = da->id->name; |
| 2878 |
|
|
appAtts[attIndex++] = da->value; |
| 2879 |
|
|
|
| 2880 |
|
|
|
| 2881 |
|
|
|
| 2882 |
|
|
|
| 2883 |
|
|
appAtts[attIndex++] = da->id->name; |
| 2884 |
|
|
appAtts[attIndex++] = da->value; |
| 2885 |
|
|
|
| 2886 |
|
|
|
| 2887 |
|
|
|
| 2888 |
|
|
|
| 2889 |
|
|
|
| 2890 |
|
|
/* expand prefixed attribute names, check for duplicates, |
| 2891 |
|
|
and clear flags that say whether attributes were specified */ |
| 2892 |
|
|
|
| 2893 |
|
|
|
| 2894 |
|
|
int j; /* hash table index */ |
| 2895 |
|
|
unsigned long version = nsAttsVersion; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
| 2896 |
|
|
int nsAttsSize = (int)1 << nsAttsPower; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
| 2897 |
|
|
/* size of hash table must be at least 2 * (# of prefixed attributes) */ |
| 2898 |
|
|
if ((nPrefixes << 1) >> nsAttsPower) { /* true for nsAttsPower = 0 */ |
| 2899 |
|
|
|
| 2900 |
|
|
/* hash table size must also be a power of 2 and >= 8 */ |
| 2901 |
|
|
while (nPrefixes >> nsAttsPower++); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
licm |
Moving accesses to memory location out of the loop |
storeAtts |
|
|
gvn |
load of type i8 eliminated in favor of load |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 2902 |
|
|
|
| 2903 |
|
|
|
| 2904 |
|
|
nsAttsSize = (int)1 << nsAttsPower; |
| 2905 |
|
|
temp = (NS_ATT *)REALLOC(nsAtts, nsAttsSize * sizeof(NS_ATT)); |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2906 |
|
|
|
| 2907 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2908 |
|
|
|
| 2909 |
|
|
version = 0; /* force re-initialization of nsAtts hash table */ |
| 2910 |
|
|
|
| 2911 |
|
|
/* using a version flag saves us from initializing nsAtts every time */ |
| 2912 |
|
|
if (!version) { /* initialize version flags when version wraps around */ |
| 2913 |
|
|
version = INIT_ATTS_VERSION; |
| 2914 |
|
|
for (j = nsAttsSize; j != 0; ) |
|
|
loop-vectorize |
the cost-model indicates that vectorization is not beneficial |
storeAtts |
|
|
loop-vectorize |
the cost-model indicates that interleaving is not beneficial |
storeAtts |
|
|
loop-unroll |
unrolled loop by a factor of 4 with run-time trip count |
storeAtts |
| 2915 |
|
|
nsAtts[--j].version = version; |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
hosting load |
storeAtts |
| 2916 |
|
|
|
| 2917 |
|
|
nsAttsVersion = --version; |
| 2918 |
|
|
|
| 2919 |
|
|
/* expand prefixed names and check for duplicates */ |
| 2920 |
|
|
for (; i < attIndex; i += 2) { |
| 2921 |
|
|
const XML_Char *s = appAtts[i]; |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2922 |
|
|
if (s[-1] == 2) { /* prefixed */ |
| 2923 |
|
|
|
| 2924 |
|
|
|
| 2925 |
|
|
unsigned long uriHash = hash_secret_salt; |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
| 2926 |
|
|
((XML_Char *)s)[-1] = 0; /* clear flag */ |
| 2927 |
|
|
id = (ATTRIBUTE_ID *)lookup(parser, &dtd->attributeIds, s, 0); |
|
|
inline |
lookup can be inlined into storeAtts with cost=205 (threshold=250) |
storeAtts |
|
|
inline |
lookup inlined into storeAtts |
storeAtts |
| 2928 |
|
|
|
| 2929 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2930 |
|
|
|
| 2931 |
|
|
|
| 2932 |
|
|
return XML_ERROR_UNBOUND_PREFIX; |
| 2933 |
|
|
|
| 2934 |
|
|
/* as we expand the name we also calculate its hash value */ |
| 2935 |
|
|
for (j = 0; j < b->uriLen; j++) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 2936 |
|
|
const XML_Char c = b->uri[j]; |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2937 |
|
|
if (!poolAppendChar(&tempPool, c)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAtts |
|
|
inline |
poolGrow will not be inlined into storeAtts |
storeAtts |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeAtts |
|
|
gvn |
load eliminated by PRE |
storeAtts |
| 2938 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2939 |
|
|
uriHash = CHAR_HASH(uriHash, c); |
| 2940 |
|
|
|
| 2941 |
|
|
while (*s++ != XML_T(ASCII_COLON)) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
| 2942 |
|
|
|
| 2943 |
|
|
do { /* copies null terminator */ |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
| 2944 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
| 2945 |
|
|
if (!poolAppendChar(&tempPool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAtts |
|
|
inline |
poolGrow will not be inlined into storeAtts |
storeAtts |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
storeAtts |
|
|
gvn |
load eliminated by PRE |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeAtts |
| 2946 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2947 |
|
|
uriHash = CHAR_HASH(uriHash, c); |
| 2948 |
|
|
|
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
storeAtts |
| 2949 |
|
|
|
| 2950 |
|
|
{ /* Check hash table for duplicate of expanded name (uriName). |
| 2951 |
|
|
Derived from code in lookup(parser, HASH_TABLE *table, ...). |
| 2952 |
|
|
|
| 2953 |
|
|
|
| 2954 |
|
|
unsigned long mask = nsAttsSize - 1; |
|
|
licm |
hosting add |
storeAtts |
|
|
licm |
hosting sext |
storeAtts |
| 2955 |
|
|
j = uriHash & mask; /* index into hash table */ |
| 2956 |
|
|
while (nsAtts[j].version == version) { |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
storeAtts |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type %struct.NS_ATT* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.NS_ATT* eliminated in favor of phi |
storeAtts |
| 2957 |
|
|
/* for speed we compare stored hash values first */ |
| 2958 |
|
|
if (uriHash == nsAtts[j].hash) { |
| 2959 |
|
|
const XML_Char *s1 = poolStart(&tempPool); |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2960 |
|
|
const XML_Char *s2 = nsAtts[j].uriName; |
| 2961 |
|
|
/* s1 is null terminated, but not s2 */ |
| 2962 |
|
|
for (; *s1 == *s2 && *s1 != 0; s1++, s2++); |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 2963 |
|
|
|
| 2964 |
|
|
return XML_ERROR_DUPLICATE_ATTRIBUTE; |
| 2965 |
|
|
|
| 2966 |
|
|
|
| 2967 |
|
|
step = PROBE_STEP(uriHash, mask, nsAttsPower); |
|
|
licm |
hosting xor |
storeAtts |
|
|
licm |
hosting and |
storeAtts |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
storeAtts |
|
|
licm |
hosting lshr |
storeAtts |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
storeAtts |
| 2968 |
|
|
j < step ? (j += nsAttsSize - step) : (j -= step); |
| 2969 |
|
|
|
| 2970 |
|
|
|
| 2971 |
|
|
|
| 2972 |
|
|
if (ns_triplets) { /* append namespace separator and prefix */ |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
| 2973 |
|
|
tempPool.ptr[-1] = namespaceSeparator; |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
| 2974 |
|
|
|
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 2975 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 2976 |
|
|
if (!poolAppendChar(&tempPool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAtts |
|
|
inline |
poolGrow will not be inlined into storeAtts |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load eliminated by PRE |
storeAtts |
| 2977 |
|
|
return XML_ERROR_NO_MEMORY; |
| 2978 |
|
|
|
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
storeAtts |
| 2979 |
|
|
|
| 2980 |
|
|
|
| 2981 |
|
|
/* store expanded name in attribute list */ |
| 2982 |
|
|
s = poolStart(&tempPool); |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
hosting bitcast |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
| 2983 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
licm |
hosting bitcast |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
| 2984 |
|
|
|
| 2985 |
|
|
|
| 2986 |
|
|
/* fill empty slot with new version, uriName and hash value */ |
| 2987 |
|
|
nsAtts[j].version = version; |
|
|
gvn |
load of type %struct.NS_ATT* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
| 2988 |
|
|
nsAtts[j].hash = uriHash; |
| 2989 |
|
|
|
| 2990 |
|
|
|
| 2991 |
|
|
|
| 2992 |
|
|
|
|
|
licm |
sinking add |
storeAtts |
| 2993 |
|
|
|
| 2994 |
|
|
|
| 2995 |
|
|
|
| 2996 |
|
|
|
| 2997 |
|
|
((XML_Char *)s)[-1] = 0; /* clear flag */ |
| 2998 |
|
|
|
| 2999 |
|
|
|
| 3000 |
|
|
/* clear flags for the remaining attributes */ |
| 3001 |
|
|
for (; i < attIndex; i += 2) |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 3002 |
|
|
((XML_Char *)(appAtts[i]))[-1] = 0; |
| 3003 |
|
|
for (binding = *bindingsPtr; binding; binding = binding->nextTagBinding) |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 3004 |
|
|
binding->attId->name[-1] = 0; |
| 3005 |
|
|
|
| 3006 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
| 3007 |
|
|
|
| 3008 |
|
|
|
| 3009 |
|
|
/* expand the element type name */ |
| 3010 |
|
|
if (elementType->prefix) { |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by store |
storeAtts |
| 3011 |
|
|
binding = elementType->prefix->binding; |
| 3012 |
|
|
|
| 3013 |
|
|
return XML_ERROR_UNBOUND_PREFIX; |
| 3014 |
|
|
localPart = tagNamePtr->str; |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
| 3015 |
|
|
while (*localPart++ != XML_T(ASCII_COLON)) |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 3016 |
|
|
|
| 3017 |
|
|
|
| 3018 |
|
|
else if (dtd->defaultPrefix.binding) { |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
storeAtts |
| 3019 |
|
|
binding = dtd->defaultPrefix.binding; |
| 3020 |
|
|
localPart = tagNamePtr->str; |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
| 3021 |
|
|
|
| 3022 |
|
|
|
| 3023 |
|
|
|
| 3024 |
|
|
|
| 3025 |
|
|
if (ns_triplets && binding->prefix->name) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
| 3026 |
|
|
for (; binding->prefix->name[prefixLen++];) |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 3027 |
|
|
; /* prefixLen includes null terminator */ |
| 3028 |
|
|
|
| 3029 |
|
|
tagNamePtr->localPart = localPart; |
| 3030 |
|
|
tagNamePtr->uriLen = binding->uriLen; |
| 3031 |
|
|
tagNamePtr->prefix = binding->prefix->name; |
| 3032 |
|
|
tagNamePtr->prefixLen = prefixLen; |
| 3033 |
|
|
for (i = 0; localPart[i++];) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 3034 |
|
|
; /* i includes null terminator */ |
| 3035 |
|
|
n = i + binding->uriLen + prefixLen; |
| 3036 |
|
|
if (n > binding->uriAlloc) { |
| 3037 |
|
|
|
| 3038 |
|
|
uri = (XML_Char *)MALLOC((n + EXPAND_SPARE) * sizeof(XML_Char)); |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by store |
storeAtts |
| 3039 |
|
|
|
| 3040 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3041 |
|
|
binding->uriAlloc = n + EXPAND_SPARE; |
| 3042 |
|
|
memcpy(uri, binding->uri, binding->uriLen * sizeof(XML_Char)); |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
storeAtts |
| 3043 |
|
|
for (p = tagStack; p; p = p->parent) |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
| 3044 |
|
|
if (p->name.str == binding->uri) |
|
|
licm |
hosting load |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeAtts |
| 3045 |
|
|
|
| 3046 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
storeAtts |
| 3047 |
|
|
|
| 3048 |
|
|
|
| 3049 |
|
|
/* if namespaceSeparator != '\0' then uri includes it already */ |
| 3050 |
|
|
uri = binding->uri + binding->uriLen; |
|
|
gvn |
load eliminated by PRE |
storeAtts |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
storeAtts |
|
|
gvn |
load eliminated by PRE |
storeAtts |
| 3051 |
|
|
memcpy(uri, localPart, i * sizeof(XML_Char)); |
| 3052 |
|
|
/* we always have a namespace separator between localPart and prefix */ |
| 3053 |
|
|
|
| 3054 |
|
|
|
| 3055 |
|
|
*uri = namespaceSeparator; /* replace null terminator */ |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
| 3056 |
|
|
memcpy(uri + 1, binding->prefix->name, prefixLen * sizeof(XML_Char)); |
|
|
gvn |
load of type %struct.prefix* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
| 3057 |
|
|
|
| 3058 |
|
|
tagNamePtr->str = binding->uri; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
| 3059 |
|
|
|
| 3060 |
|
|
|
| 3061 |
|
|
|
| 3062 |
|
|
/* addBinding() overwrites the value of prefix->binding without checking. |
| 3063 |
|
|
Therefore one must keep track of the old value outside of addBinding(). |
| 3064 |
|
|
|
| 3065 |
|
|
|
| 3066 |
|
|
addBinding(XML_Parser parser, PREFIX *prefix, const ATTRIBUTE_ID *attId, |
| 3067 |
|
|
const XML_Char *uri, BINDING **bindingsPtr) |
| 3068 |
|
|
|
| 3069 |
|
|
static const XML_Char xmlNamespace[] = { |
| 3070 |
|
|
ASCII_h, ASCII_t, ASCII_t, ASCII_p, ASCII_COLON, ASCII_SLASH, ASCII_SLASH, |
| 3071 |
|
|
ASCII_w, ASCII_w, ASCII_w, ASCII_PERIOD, ASCII_w, ASCII_3, ASCII_PERIOD, |
| 3072 |
|
|
ASCII_o, ASCII_r, ASCII_g, ASCII_SLASH, ASCII_X, ASCII_M, ASCII_L, |
| 3073 |
|
|
ASCII_SLASH, ASCII_1, ASCII_9, ASCII_9, ASCII_8, ASCII_SLASH, |
| 3074 |
|
|
ASCII_n, ASCII_a, ASCII_m, ASCII_e, ASCII_s, ASCII_p, ASCII_a, ASCII_c, |
| 3075 |
|
|
|
| 3076 |
|
|
|
| 3077 |
|
|
static const int xmlLen = |
| 3078 |
|
|
(int)sizeof(xmlNamespace)/sizeof(XML_Char) - 1; |
| 3079 |
|
|
static const XML_Char xmlnsNamespace[] = { |
| 3080 |
|
|
ASCII_h, ASCII_t, ASCII_t, ASCII_p, ASCII_COLON, ASCII_SLASH, ASCII_SLASH, |
| 3081 |
|
|
ASCII_w, ASCII_w, ASCII_w, ASCII_PERIOD, ASCII_w, ASCII_3, ASCII_PERIOD, |
| 3082 |
|
|
ASCII_o, ASCII_r, ASCII_g, ASCII_SLASH, ASCII_2, ASCII_0, ASCII_0, |
| 3083 |
|
|
ASCII_0, ASCII_SLASH, ASCII_x, ASCII_m, ASCII_l, ASCII_n, ASCII_s, |
| 3084 |
|
|
|
| 3085 |
|
|
|
| 3086 |
|
|
static const int xmlnsLen = |
| 3087 |
|
|
(int)sizeof(xmlnsNamespace)/sizeof(XML_Char) - 1; |
| 3088 |
|
|
|
| 3089 |
|
|
XML_Bool mustBeXML = XML_FALSE; |
| 3090 |
|
|
XML_Bool isXML = XML_TRUE; |
| 3091 |
|
|
XML_Bool isXMLNS = XML_TRUE; |
| 3092 |
|
|
|
| 3093 |
|
|
|
| 3094 |
|
|
|
| 3095 |
|
|
|
| 3096 |
|
|
/* empty URI is only valid for default namespace per XML NS 1.0 (not 1.1) */ |
| 3097 |
|
|
if (*uri == XML_T('\0') && prefix->name) |
| 3098 |
|
|
return XML_ERROR_UNDECLARING_PREFIX; |
| 3099 |
|
|
|
| 3100 |
|
|
|
| 3101 |
|
|
&& prefix->name[0] == XML_T(ASCII_x) |
| 3102 |
|
|
&& prefix->name[1] == XML_T(ASCII_m) |
| 3103 |
|
|
&& prefix->name[2] == XML_T(ASCII_l)) { |
| 3104 |
|
|
|
| 3105 |
|
|
/* Not allowed to bind xmlns */ |
| 3106 |
|
|
if (prefix->name[3] == XML_T(ASCII_n) |
| 3107 |
|
|
&& prefix->name[4] == XML_T(ASCII_s) |
| 3108 |
|
|
&& prefix->name[5] == XML_T('\0')) |
| 3109 |
|
|
return XML_ERROR_RESERVED_PREFIX_XMLNS; |
| 3110 |
|
|
|
| 3111 |
|
|
if (prefix->name[3] == XML_T('\0')) |
|
|
gvn |
load of type i8* eliminated in favor of load |
addBinding |
|
|
gvn |
load of type i8 eliminated in favor of load |
addBinding |
| 3112 |
|
|
|
| 3113 |
|
|
|
| 3114 |
|
|
|
| 3115 |
|
|
for (len = 0; uri[len]; len++) { |
|
|
gvn |
load of type i8 eliminated in favor of load |
addBinding |
|
|
loop-vectorize |
loop not vectorized |
addBinding |
| 3116 |
|
|
if (isXML && (len > xmlLen || uri[len] != xmlNamespace[len])) |
|
|
loop-vectorize |
loop not vectorized: control flow cannot be substituted for a select |
addBinding |
| 3117 |
|
|
|
| 3118 |
|
|
|
| 3119 |
|
|
if (!mustBeXML && isXMLNS |
|
|
licm |
hosting icmp |
addBinding |
| 3120 |
|
|
&& (len > xmlnsLen || uri[len] != xmlnsNamespace[len])) |
|
|
gvn |
load of type i8 eliminated in favor of phi |
addBinding |
| 3121 |
|
|
|
| 3122 |
|
|
|
| 3123 |
|
|
isXML = isXML && len == xmlLen; |
| 3124 |
|
|
isXMLNS = isXMLNS && len == xmlnsLen; |
| 3125 |
|
|
|
| 3126 |
|
|
|
| 3127 |
|
|
return mustBeXML ? XML_ERROR_RESERVED_PREFIX_XML |
| 3128 |
|
|
: XML_ERROR_RESERVED_NAMESPACE_URI; |
| 3129 |
|
|
|
| 3130 |
|
|
|
| 3131 |
|
|
return XML_ERROR_RESERVED_NAMESPACE_URI; |
| 3132 |
|
|
|
| 3133 |
|
|
|
| 3134 |
|
|
|
| 3135 |
|
|
|
| 3136 |
|
|
|
| 3137 |
|
|
|
| 3138 |
|
|
XML_Char *temp = (XML_Char *)REALLOC(b->uri, |
| 3139 |
|
|
sizeof(XML_Char) * (len + EXPAND_SPARE)); |
| 3140 |
|
|
|
| 3141 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3142 |
|
|
|
| 3143 |
|
|
b->uriAlloc = len + EXPAND_SPARE; |
| 3144 |
|
|
|
| 3145 |
|
|
freeBindingList = b->nextTagBinding; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
addBinding |
| 3146 |
|
|
|
| 3147 |
|
|
|
| 3148 |
|
|
b = (BINDING *)MALLOC(sizeof(BINDING)); |
| 3149 |
|
|
|
| 3150 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3151 |
|
|
b->uri = (XML_Char *)MALLOC(sizeof(XML_Char) * (len + EXPAND_SPARE)); |
|
|
gvn |
load of type i8* (i64)* not eliminated in favor of load because it is clobbered by call |
addBinding |
| 3152 |
|
|
|
| 3153 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
addBinding |
| 3154 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3155 |
|
|
|
| 3156 |
|
|
b->uriAlloc = len + EXPAND_SPARE; |
| 3157 |
|
|
|
| 3158 |
|
|
|
| 3159 |
|
|
memcpy(b->uri, uri, len * sizeof(XML_Char)); |
| 3160 |
|
|
|
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
addBinding |
| 3161 |
|
|
b->uri[len - 1] = namespaceSeparator; |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
addBinding |
| 3162 |
|
|
|
| 3163 |
|
|
|
| 3164 |
|
|
b->prevPrefixBinding = prefix->binding; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
addBinding |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
addBinding |
| 3165 |
|
|
/* NULL binding when default namespace undeclared */ |
| 3166 |
|
|
if (*uri == XML_T('\0') && prefix == &_dtd->defaultPrefix) |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
addBinding |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by store |
addBinding |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
addBinding |
| 3167 |
|
|
|
| 3168 |
|
|
|
| 3169 |
|
|
|
| 3170 |
|
|
b->nextTagBinding = *bindingsPtr; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
addBinding |
| 3171 |
|
|
|
| 3172 |
|
|
/* if attId == NULL then we are not starting a namespace scope */ |
| 3173 |
|
|
if (attId && startNamespaceDeclHandler) |
|
|
gvn |
load of type void (i8*, i8*, i8*)* not eliminated because it is clobbered by store |
addBinding |
| 3174 |
|
|
startNamespaceDeclHandler(handlerArg, prefix->name, |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
addBinding |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
addBinding |
| 3175 |
|
|
prefix->binding ? uri : 0); |
|
|
gvn |
load of type %struct.binding* not eliminated in favor of store because it is clobbered by store |
addBinding |
| 3176 |
|
|
|
| 3177 |
|
|
|
| 3178 |
|
|
|
| 3179 |
|
|
/* The idea here is to avoid using stack for each CDATA section when |
| 3180 |
|
|
the whole file is parsed with one call. |
| 3181 |
|
|
|
| 3182 |
|
|
static enum XML_Error PTRCALL |
| 3183 |
|
|
cdataSectionProcessor(XML_Parser parser, |
| 3184 |
|
|
|
| 3185 |
|
|
|
| 3186 |
|
|
|
| 3187 |
|
|
|
| 3188 |
|
|
enum XML_Error result = doCdataSection(parser, encoding, &start, end, |
|
|
inline |
doCdataSection too costly to inline (cost=640, threshold=625) |
cdataSectionProcessor |
|
|
inline |
doCdataSection will not be inlined into cdataSectionProcessor |
cdataSectionProcessor |
| 3189 |
|
|
endPtr, (XML_Bool)!ps_finalBuffer); |
| 3190 |
|
|
if (result != XML_ERROR_NONE) |
| 3191 |
|
|
|
| 3192 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
cdataSectionProcessor |
| 3193 |
|
|
if (parentParser) { /* we are parsing an external entity */ |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
cdataSectionProcessor |
| 3194 |
|
|
processor = externalEntityContentProcessor; |
| 3195 |
|
|
return externalEntityContentProcessor(parser, start, end, endPtr); |
|
|
inline |
externalEntityContentProcessor can be inlined into cdataSectionProcessor with cost=85 (threshold=250) |
cdataSectionProcessor |
|
|
inline |
externalEntityContentProcessor inlined into cdataSectionProcessor |
cdataSectionProcessor |
| 3196 |
|
|
|
| 3197 |
|
|
|
| 3198 |
|
|
processor = contentProcessor; |
| 3199 |
|
|
return contentProcessor(parser, start, end, endPtr); |
|
|
inline |
contentProcessor can be inlined into cdataSectionProcessor with cost=85 (threshold=250) |
cdataSectionProcessor |
|
|
inline |
contentProcessor inlined into cdataSectionProcessor |
cdataSectionProcessor |
| 3200 |
|
|
|
| 3201 |
|
|
|
| 3202 |
|
|
|
| 3203 |
|
|
|
| 3204 |
|
|
|
| 3205 |
|
|
/* startPtr gets set to non-null if the section is closed, and to null if |
| 3206 |
|
|
the section is not yet closed. |
| 3207 |
|
|
|
| 3208 |
|
|
|
| 3209 |
|
|
doCdataSection(XML_Parser parser, |
| 3210 |
|
|
|
| 3211 |
|
|
|
| 3212 |
|
|
|
| 3213 |
|
|
|
| 3214 |
|
|
|
| 3215 |
|
|
|
| 3216 |
|
|
const char *s = *startPtr; |
| 3217 |
|
|
|
| 3218 |
|
|
|
| 3219 |
|
|
|
| 3220 |
|
|
|
| 3221 |
|
|
|
| 3222 |
|
|
eventEndPP = &eventEndPtr; |
| 3223 |
|
|
|
| 3224 |
|
|
|
| 3225 |
|
|
eventPP = &(openInternalEntities->internalEventPtr); |
| 3226 |
|
|
eventEndPP = &(openInternalEntities->internalEventEndPtr); |
| 3227 |
|
|
|
| 3228 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of load |
doCdataSection |
| 3229 |
|
|
|
| 3230 |
|
|
|
| 3231 |
|
|
|
| 3232 |
|
|
|
|
|
licm |
hosting bitcast |
doCdataSection |
| 3233 |
|
|
int tok = XmlCdataSectionTok(enc, s, end, &next); |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
| 3234 |
|
|
|
|
|
licm |
hosting bitcast |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
hosting bitcast |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doCdataSection |
| 3235 |
|
|
|
| 3236 |
|
|
case XML_TOK_CDATA_SECT_CLOSE: |
| 3237 |
|
|
if (endCdataSectionHandler) |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by store |
doCdataSection |
| 3238 |
|
|
endCdataSectionHandler(handlerArg); |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
| 3239 |
|
|
|
| 3240 |
|
|
/* see comment under XML_TOK_CDATA_SECT_OPEN */ |
| 3241 |
|
|
else if (characterDataHandler) |
| 3242 |
|
|
characterDataHandler(handlerArg, dataBuf, 0); |
| 3243 |
|
|
|
| 3244 |
|
|
|
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doCdataSection |
| 3245 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doCdataSection with cost=165 (threshold=250) |
doCdataSection |
|
|
inline |
reportDefault inlined into doCdataSection |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doCdataSection |
| 3246 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doCdataSection |
| 3247 |
|
|
|
| 3248 |
|
|
if (ps_parsing == XML_FINISHED) |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
| 3249 |
|
|
return XML_ERROR_ABORTED; |
| 3250 |
|
|
|
| 3251 |
|
|
|
| 3252 |
|
|
case XML_TOK_DATA_NEWLINE: |
| 3253 |
|
|
if (characterDataHandler) { |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doCdataSection |
| 3254 |
|
|
|
| 3255 |
|
|
characterDataHandler(handlerArg, &c, 1); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
| 3256 |
|
|
|
| 3257 |
|
|
|
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doCdataSection |
| 3258 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doCdataSection with cost=165 (threshold=250) |
doCdataSection |
|
|
inline |
reportDefault inlined into doCdataSection |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doCdataSection |
| 3259 |
|
|
|
| 3260 |
|
|
|
| 3261 |
|
|
|
| 3262 |
|
|
XML_CharacterDataHandler charDataHandler = characterDataHandler; |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doCdataSection |
| 3263 |
|
|
|
| 3264 |
|
|
if (MUST_CONVERT(enc, s)) { |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doCdataSection |
| 3265 |
|
|
|
| 3266 |
|
|
ICHAR *dataPtr = (ICHAR *)dataBuf; |
|
|
licm |
hosting bitcast |
doCdataSection |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
hosting bitcast |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
hosting bitcast |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doCdataSection |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doCdataSection |
|
|
loop-vectorize |
loop not vectorized |
doCdataSection |
| 3267 |
|
|
XmlConvert(enc, &s, next, &dataPtr, (ICHAR *)dataBufEnd); |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load eliminated by PRE |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
| 3268 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doCdataSection |
| 3269 |
|
|
charDataHandler(handlerArg, dataBuf, |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
| 3270 |
|
|
(int)(dataPtr - (ICHAR *)dataBuf)); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doCdataSection |
| 3271 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doCdataSection |
| 3272 |
|
|
|
| 3273 |
|
|
|
| 3274 |
|
|
|
| 3275 |
|
|
|
| 3276 |
|
|
|
| 3277 |
|
|
charDataHandler(handlerArg, |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
| 3278 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doCdataSection |
| 3279 |
|
|
(int)((XML_Char *)next - (XML_Char *)s)); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i64 eliminated in favor of load |
doCdataSection |
| 3280 |
|
|
|
| 3281 |
|
|
|
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doCdataSection |
| 3282 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doCdataSection with cost=165 (threshold=250) |
doCdataSection |
|
|
inline |
reportDefault inlined into doCdataSection |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doCdataSection |
| 3283 |
|
|
|
| 3284 |
|
|
|
| 3285 |
|
|
|
| 3286 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of load |
doCdataSection |
| 3287 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 3288 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 3289 |
|
|
|
| 3290 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doCdataSection |
| 3291 |
|
|
|
| 3292 |
|
|
|
| 3293 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 3294 |
|
|
|
| 3295 |
|
|
|
| 3296 |
|
|
|
| 3297 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doCdataSection |
| 3298 |
|
|
|
| 3299 |
|
|
|
| 3300 |
|
|
return XML_ERROR_UNCLOSED_CDATA_SECTION; |
| 3301 |
|
|
|
| 3302 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of load |
doCdataSection |
| 3303 |
|
|
return XML_ERROR_UNEXPECTED_STATE; |
| 3304 |
|
|
|
| 3305 |
|
|
|
| 3306 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doCdataSection |
| 3307 |
|
|
|
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doCdataSection |
| 3308 |
|
|
|
| 3309 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doCdataSection |
| 3310 |
|
|
|
| 3311 |
|
|
|
| 3312 |
|
|
return XML_ERROR_ABORTED; |
| 3313 |
|
|
|
| 3314 |
|
|
|
| 3315 |
|
|
|
| 3316 |
|
|
|
| 3317 |
|
|
|
| 3318 |
|
|
|
| 3319 |
|
|
|
| 3320 |
|
|
|
| 3321 |
|
|
/* The idea here is to avoid using stack for each IGNORE section when |
| 3322 |
|
|
the whole file is parsed with one call. |
| 3323 |
|
|
|
| 3324 |
|
|
static enum XML_Error PTRCALL |
| 3325 |
|
|
ignoreSectionProcessor(XML_Parser parser, |
| 3326 |
|
|
|
| 3327 |
|
|
|
| 3328 |
|
|
|
| 3329 |
|
|
|
| 3330 |
|
|
enum XML_Error result = doIgnoreSection(parser, encoding, &start, end, |
|
|
inline |
doIgnoreSection can be inlined into ignoreSectionProcessor with cost=-14830 (threshold=250) |
ignoreSectionProcessor |
|
|
inline |
doIgnoreSection inlined into ignoreSectionProcessor |
ignoreSectionProcessor |
| 3331 |
|
|
endPtr, (XML_Bool)!ps_finalBuffer); |
| 3332 |
|
|
if (result != XML_ERROR_NONE) |
| 3333 |
|
|
|
| 3334 |
|
|
|
| 3335 |
|
|
processor = prologProcessor; |
| 3336 |
|
|
return prologProcessor(parser, start, end, endPtr); |
|
|
inline |
prologProcessor can be inlined into ignoreSectionProcessor with cost=85 (threshold=375) |
ignoreSectionProcessor |
|
|
inline |
prologProcessor inlined into ignoreSectionProcessor |
ignoreSectionProcessor |
| 3337 |
|
|
|
| 3338 |
|
|
|
| 3339 |
|
|
|
| 3340 |
|
|
|
| 3341 |
|
|
/* startPtr gets set to non-null is the section is closed, and to null |
| 3342 |
|
|
if the section is not yet closed. |
| 3343 |
|
|
|
| 3344 |
|
|
|
| 3345 |
|
|
doIgnoreSection(XML_Parser parser, |
| 3346 |
|
|
|
| 3347 |
|
|
|
| 3348 |
|
|
|
| 3349 |
|
|
|
| 3350 |
|
|
|
| 3351 |
|
|
|
| 3352 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
| 3353 |
|
|
|
| 3354 |
|
|
const char *s = *startPtr; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 3355 |
|
|
|
| 3356 |
|
|
|
| 3357 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 3358 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 3359 |
|
|
|
| 3360 |
|
|
eventEndPP = &eventEndPtr; |
|
|
licm |
hosting getelementptr |
doProlog |
| 3361 |
|
|
|
| 3362 |
|
|
|
| 3363 |
|
|
eventPP = &(openInternalEntities->internalEventPtr); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
| 3364 |
|
|
eventEndPP = &(openInternalEntities->internalEventEndPtr); |
| 3365 |
|
|
|
| 3366 |
|
|
|
| 3367 |
|
|
|
| 3368 |
|
|
tok = XmlIgnoreSectionTok(enc, s, end, &next); |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
doIgnoreSection |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
ignoreSectionProcessor |
| 3369 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doIgnoreSection |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
ignoreSectionProcessor |
| 3370 |
|
|
|
| 3371 |
|
|
case XML_TOK_IGNORE_SECT: |
| 3372 |
|
|
|
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doIgnoreSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
ignoreSectionProcessor |
| 3373 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
Not inlining. Cost of inlining reportDefault increases the cost of inlining doIgnoreSection in other contexts |
doIgnoreSection |
|
|
inline |
reportDefault will not be inlined into doIgnoreSection |
doIgnoreSection |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doIgnoreSection |
|
|
inline |
reportDefault can be inlined into doProlog with cost=165 (threshold=250) |
doProlog |
|
|
inline |
reportDefault inlined into doProlog |
doProlog |
|
|
inline |
reportDefault can be inlined into ignoreSectionProcessor with cost=-14835 (threshold=250) |
ignoreSectionProcessor |
|
|
inline |
reportDefault inlined into ignoreSectionProcessor |
ignoreSectionProcessor |
| 3374 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doIgnoreSection |
|
|
gvn |
load eliminated by PRE |
doIgnoreSection |
| 3375 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
| 3376 |
|
|
if (ps_parsing == XML_FINISHED) |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doIgnoreSection |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doIgnoreSection |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
ignoreSectionProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
ignoreSectionProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
ignoreSectionProcessor |
| 3377 |
|
|
return XML_ERROR_ABORTED; |
| 3378 |
|
|
|
| 3379 |
|
|
|
| 3380 |
|
|
|
| 3381 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of load |
doIgnoreSection |
| 3382 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 3383 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 3384 |
|
|
|
|
|
licm |
hosting icmp |
doProlog |
| 3385 |
|
|
|
| 3386 |
|
|
|
| 3387 |
|
|
|
| 3388 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 3389 |
|
|
|
| 3390 |
|
|
|
| 3391 |
|
|
|
|
|
licm |
hosting icmp |
doProlog |
| 3392 |
|
|
|
| 3393 |
|
|
|
| 3394 |
|
|
|
| 3395 |
|
|
return XML_ERROR_SYNTAX; /* XML_ERROR_UNCLOSED_IGNORE_SECTION */ |
| 3396 |
|
|
|
| 3397 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of load |
doIgnoreSection |
| 3398 |
|
|
return XML_ERROR_UNEXPECTED_STATE; |
| 3399 |
|
|
|
| 3400 |
|
|
|
| 3401 |
|
|
|
| 3402 |
|
|
|
| 3403 |
|
|
|
| 3404 |
|
|
|
| 3405 |
|
|
|
| 3406 |
|
|
initializeEncoding(XML_Parser parser) |
| 3407 |
|
|
|
| 3408 |
|
|
|
| 3409 |
|
|
|
| 3410 |
|
|
|
| 3411 |
|
|
if (!protocolEncodingName) |
| 3412 |
|
|
|
| 3413 |
|
|
|
| 3414 |
|
|
|
| 3415 |
|
|
for (i = 0; protocolEncodingName[i]; i++) { |
| 3416 |
|
|
if (i == sizeof(encodingBuf) - 1 |
| 3417 |
|
|
|| (protocolEncodingName[i] & ~0x7f) != 0) { |
| 3418 |
|
|
|
| 3419 |
|
|
|
| 3420 |
|
|
|
| 3421 |
|
|
encodingBuf[i] = (char)protocolEncodingName[i]; |
| 3422 |
|
|
|
| 3423 |
|
|
|
| 3424 |
|
|
|
| 3425 |
|
|
|
| 3426 |
|
|
|
| 3427 |
|
|
s = protocolEncodingName; |
| 3428 |
|
|
|
| 3429 |
|
|
if ((ns ? XmlInitEncodingNS : XmlInitEncoding)(&initEncoding, &encoding, s)) |
| 3430 |
|
|
|
| 3431 |
|
|
return handleUnknownEncoding(parser, protocolEncodingName); |
|
|
inline |
Not inlining. Cost of inlining handleUnknownEncoding increases the cost of inlining initializeEncoding in other contexts |
initializeEncoding |
|
|
inline |
handleUnknownEncoding will not be inlined into initializeEncoding |
initializeEncoding |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
initializeEncoding |
|
|
inline |
handleUnknownEncoding can be inlined into externalEntityInitProcessor with cost=235 (threshold=250) |
externalEntityInitProcessor |
|
|
inline |
handleUnknownEncoding inlined into externalEntityInitProcessor |
externalEntityInitProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
externalEntityInitProcessor |
|
|
inline |
handleUnknownEncoding can be inlined into externalParEntInitProcessor with cost=235 (threshold=250) |
externalParEntInitProcessor |
|
|
inline |
handleUnknownEncoding inlined into externalParEntInitProcessor |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
externalParEntInitProcessor |
|
|
inline |
handleUnknownEncoding can be inlined into prologInitProcessor with cost=-14765 (threshold=250) |
prologInitProcessor |
|
|
inline |
handleUnknownEncoding inlined into prologInitProcessor |
prologInitProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
prologInitProcessor |
| 3432 |
|
|
|
| 3433 |
|
|
|
| 3434 |
|
|
|
| 3435 |
|
|
processXmlDecl(XML_Parser parser, int isGeneralTextEntity, |
| 3436 |
|
|
const char *s, const char *next) |
| 3437 |
|
|
|
| 3438 |
|
|
const char *encodingName = NULL; |
| 3439 |
|
|
const XML_Char *storedEncName = NULL; |
| 3440 |
|
|
const ENCODING *newEncoding = NULL; |
| 3441 |
|
|
const char *version = NULL; |
| 3442 |
|
|
|
| 3443 |
|
|
const XML_Char *storedversion = NULL; |
| 3444 |
|
|
|
| 3445 |
|
|
|
| 3446 |
|
|
|
| 3447 |
|
|
: XmlParseXmlDecl)(isGeneralTextEntity, |
| 3448 |
|
|
|
| 3449 |
|
|
|
| 3450 |
|
|
|
| 3451 |
|
|
|
| 3452 |
|
|
|
| 3453 |
|
|
|
| 3454 |
|
|
|
| 3455 |
|
|
|
| 3456 |
|
|
|
| 3457 |
|
|
|
| 3458 |
|
|
return XML_ERROR_TEXT_DECL; |
| 3459 |
|
|
|
| 3460 |
|
|
return XML_ERROR_XML_DECL; |
| 3461 |
|
|
|
| 3462 |
|
|
if (!isGeneralTextEntity && standalone == 1) { |
|
|
gvn |
load of type i32 not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
| 3463 |
|
|
_dtd->standalone = XML_TRUE; |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
processXmlDecl |
| 3464 |
|
|
|
| 3465 |
|
|
if (paramEntityParsing == XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE) |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
processXmlDecl |
| 3466 |
|
|
paramEntityParsing = XML_PARAM_ENTITY_PARSING_NEVER; |
| 3467 |
|
|
|
| 3468 |
|
|
|
| 3469 |
|
|
|
|
|
gvn |
load of type void (i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
processXmlDecl |
| 3470 |
|
|
if (encodingName != NULL) { |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
| 3471 |
|
|
storedEncName = poolStoreString(&temp2Pool, |
|
|
inline |
poolStoreString can be inlined into processXmlDecl with cost=220 (threshold=250) |
processXmlDecl |
|
|
inline |
poolStoreString inlined into processXmlDecl |
processXmlDecl |
| 3472 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
| 3473 |
|
|
|
| 3474 |
|
|
|
| 3475 |
|
|
+ XmlNameLength(encoding, encodingName)); |
| 3476 |
|
|
|
| 3477 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3478 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
processXmlDecl |
| 3479 |
|
|
|
| 3480 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
| 3481 |
|
|
storedversion = poolStoreString(&temp2Pool, |
|
|
inline |
poolStoreString can be inlined into processXmlDecl with cost=220 (threshold=250) |
processXmlDecl |
|
|
inline |
poolStoreString inlined into processXmlDecl |
processXmlDecl |
| 3482 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
| 3483 |
|
|
|
| 3484 |
|
|
versionend - encoding->minBytesPerChar); |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
| 3485 |
|
|
|
| 3486 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3487 |
|
|
|
| 3488 |
|
|
xmlDeclHandler(handlerArg, storedversion, storedEncName, standalone); |
|
|
gvn |
load of type void (i8*, i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
processXmlDecl |
| 3489 |
|
|
|
| 3490 |
|
|
|
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
processXmlDecl |
| 3491 |
|
|
reportDefault(parser, encoding, s, next); |
|
|
inline |
reportDefault can be inlined into processXmlDecl with cost=165 (threshold=250) |
processXmlDecl |
|
|
inline |
reportDefault inlined into processXmlDecl |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
| 3492 |
|
|
if (protocolEncodingName == NULL) { |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
| 3493 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
| 3494 |
|
|
if (newEncoding->minBytesPerChar != encoding->minBytesPerChar) { |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
| 3495 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
| 3496 |
|
|
return XML_ERROR_INCORRECT_ENCODING; |
| 3497 |
|
|
|
| 3498 |
|
|
|
| 3499 |
|
|
|
| 3500 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
| 3501 |
|
|
|
| 3502 |
|
|
|
| 3503 |
|
|
storedEncName = poolStoreString( |
|
|
inline |
poolStoreString can be inlined into processXmlDecl with cost=220 (threshold=250) |
processXmlDecl |
|
|
inline |
poolStoreString inlined into processXmlDecl |
processXmlDecl |
| 3504 |
|
|
&temp2Pool, encoding, encodingName, |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
| 3505 |
|
|
encodingName + XmlNameLength(encoding, encodingName)); |
| 3506 |
|
|
|
| 3507 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3508 |
|
|
|
| 3509 |
|
|
result = handleUnknownEncoding(parser, storedEncName); |
|
|
inline |
handleUnknownEncoding can be inlined into processXmlDecl with cost=235 (threshold=250) |
processXmlDecl |
|
|
inline |
handleUnknownEncoding inlined into processXmlDecl |
processXmlDecl |
| 3510 |
|
|
|
|
|
inline |
poolClear can be inlined into processXmlDecl with cost=30 (threshold=250) |
processXmlDecl |
|
|
inline |
poolClear inlined into processXmlDecl |
processXmlDecl |
| 3511 |
|
|
if (result == XML_ERROR_UNKNOWN_ENCODING) |
| 3512 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
processXmlDecl |
| 3513 |
|
|
|
| 3514 |
|
|
|
| 3515 |
|
|
|
| 3516 |
|
|
|
| 3517 |
|
|
if (storedEncName || storedversion) |
| 3518 |
|
|
|
|
|
inline |
poolClear can be inlined into processXmlDecl with cost=30 (threshold=250) |
processXmlDecl |
|
|
inline |
poolClear inlined into processXmlDecl |
processXmlDecl |
| 3519 |
|
|
|
| 3520 |
|
|
|
| 3521 |
|
|
|
| 3522 |
|
|
|
| 3523 |
|
|
|
| 3524 |
|
|
handleUnknownEncoding(XML_Parser parser, const XML_Char *encodingName) |
| 3525 |
|
|
|
| 3526 |
|
|
if (unknownEncodingHandler) { |
|
|
gvn |
load of type i32 (i8*, i8*, %struct.XML_Encoding*)* not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i32 (i8*, i8*, %struct.XML_Encoding*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i32 (i8*, i8*, %struct.XML_Encoding*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i32 (i8*, i8*, %struct.XML_Encoding*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i32 (i8*, i8*, %struct.XML_Encoding*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i32 (i8*, i8*, %struct.XML_Encoding*)* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i32 (i8*, i8*, %struct.XML_Encoding*)* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i32 (i8*, i8*, %struct.XML_Encoding*)* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3527 |
|
|
|
| 3528 |
|
|
|
| 3529 |
|
|
for (i = 0; i < 256; i++) |
| 3530 |
|
|
|
| 3531 |
|
|
|
| 3532 |
|
|
|
| 3533 |
|
|
|
| 3534 |
|
|
if (unknownEncodingHandler(unknownEncodingHandlerData, encodingName, |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3535 |
|
|
|
| 3536 |
|
|
|
| 3537 |
|
|
unknownEncodingMem = MALLOC(XmlSizeOfUnknownEncoding()); |
|
|
inline |
PyExpat_XmlSizeOfUnknownEncoding will not be inlined into handleUnknownEncoding because its definition is unavailable |
handleUnknownEncoding |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3538 |
|
|
if (!unknownEncodingMem) { |
| 3539 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated in favor of store because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3540 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3541 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3542 |
|
|
|
| 3543 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
prologInitProcessor |
| 3544 |
|
|
? XmlInitUnknownEncodingNS |
| 3545 |
|
|
: XmlInitUnknownEncoding)(unknownEncodingMem, |
| 3546 |
|
|
|
| 3547 |
|
|
|
|
|
gvn |
load of type i32 (i8*, i8*)* not eliminated in favor of store because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i32 (i8*, i8*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i32 (i8*, i8*)* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i32 (i8*, i8*)* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i32 (i8*, i8*)* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3548 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3549 |
|
|
|
| 3550 |
|
|
unknownEncodingData = info.data; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
prologInitProcessor |
| 3551 |
|
|
unknownEncodingRelease = info.release; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
prologInitProcessor |
| 3552 |
|
|
|
| 3553 |
|
|
|
| 3554 |
|
|
|
| 3555 |
|
|
|
| 3556 |
|
|
if (info.release != NULL) |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of store because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of store because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
prologInitProcessor |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3557 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
handleUnknownEncoding |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalEntityInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
prologInitProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
prologInitProcessor |
| 3558 |
|
|
|
| 3559 |
|
|
return XML_ERROR_UNKNOWN_ENCODING; |
| 3560 |
|
|
|
| 3561 |
|
|
|
| 3562 |
|
|
static enum XML_Error PTRCALL |
| 3563 |
|
|
prologInitProcessor(XML_Parser parser, |
| 3564 |
|
|
|
| 3565 |
|
|
|
| 3566 |
|
|
|
| 3567 |
|
|
|
| 3568 |
|
|
enum XML_Error result = initializeEncoding(parser); |
|
|
inline |
initializeEncoding can be inlined into prologInitProcessor with cost=-14940 (threshold=250) |
prologInitProcessor |
|
|
inline |
initializeEncoding inlined into prologInitProcessor |
prologInitProcessor |
| 3569 |
|
|
if (result != XML_ERROR_NONE) |
| 3570 |
|
|
|
| 3571 |
|
|
processor = prologProcessor; |
| 3572 |
|
|
return prologProcessor(parser, s, end, nextPtr); |
|
|
inline |
prologProcessor can be inlined into prologInitProcessor with cost=85 (threshold=375) |
prologInitProcessor |
|
|
inline |
prologProcessor inlined into prologInitProcessor |
prologInitProcessor |
| 3573 |
|
|
|
| 3574 |
|
|
|
| 3575 |
|
|
|
| 3576 |
|
|
|
| 3577 |
|
|
static enum XML_Error PTRCALL |
| 3578 |
|
|
externalParEntInitProcessor(XML_Parser parser, |
| 3579 |
|
|
|
| 3580 |
|
|
|
| 3581 |
|
|
|
| 3582 |
|
|
|
| 3583 |
|
|
enum XML_Error result = initializeEncoding(parser); |
|
|
inline |
initializeEncoding can be inlined into externalParEntInitProcessor with cost=60 (threshold=250) |
externalParEntInitProcessor |
|
|
inline |
initializeEncoding inlined into externalParEntInitProcessor |
externalParEntInitProcessor |
| 3584 |
|
|
if (result != XML_ERROR_NONE) |
| 3585 |
|
|
|
| 3586 |
|
|
|
| 3587 |
|
|
/* we know now that XML_Parse(Buffer) has been called, |
| 3588 |
|
|
so we consider the external parameter entity read */ |
| 3589 |
|
|
_dtd->paramEntityRead = XML_TRUE; |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type %struct.DTD* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
| 3590 |
|
|
|
| 3591 |
|
|
if (prologState.inEntityValue) { |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
externalParEntInitProcessor |
| 3592 |
|
|
processor = entityValueInitProcessor; |
| 3593 |
|
|
return entityValueInitProcessor(parser, s, end, nextPtr); |
|
|
inline |
entityValueInitProcessor too costly to inline (cost=540, threshold=250) |
externalParEntInitProcessor |
|
|
inline |
entityValueInitProcessor will not be inlined into externalParEntInitProcessor |
externalParEntInitProcessor |
| 3594 |
|
|
|
| 3595 |
|
|
|
| 3596 |
|
|
processor = externalParEntProcessor; |
| 3597 |
|
|
return externalParEntProcessor(parser, s, end, nextPtr); |
|
|
inline |
externalParEntProcessor can be inlined into externalParEntInitProcessor with cost=200 (threshold=250) |
externalParEntInitProcessor |
|
|
inline |
externalParEntProcessor inlined into externalParEntInitProcessor |
externalParEntInitProcessor |
| 3598 |
|
|
|
| 3599 |
|
|
|
| 3600 |
|
|
|
| 3601 |
|
|
static enum XML_Error PTRCALL |
| 3602 |
|
|
entityValueInitProcessor(XML_Parser parser, |
| 3603 |
|
|
|
| 3604 |
|
|
|
| 3605 |
|
|
|
| 3606 |
|
|
|
| 3607 |
|
|
|
| 3608 |
|
|
|
| 3609 |
|
|
const char *next = start; |
| 3610 |
|
|
|
| 3611 |
|
|
|
| 3612 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
entityValueInitProcessor |
|
|
loop-vectorize |
loop not vectorized |
entityValueInitProcessor |
| 3613 |
|
|
tok = XmlPrologTok(encoding, start, end, &next); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
entityValueInitProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
entityValueInitProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
entityValueInitProcessor |
| 3614 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
entityValueInitProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
entityValueInitProcessor |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
entityValueInitProcessor |
| 3615 |
|
|
|
| 3616 |
|
|
if (!ps_finalBuffer && tok != XML_TOK_INVALID) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
entityValueInitProcessor |
| 3617 |
|
|
|
| 3618 |
|
|
|
| 3619 |
|
|
|
| 3620 |
|
|
|
| 3621 |
|
|
|
| 3622 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 3623 |
|
|
|
| 3624 |
|
|
return XML_ERROR_UNCLOSED_TOKEN; |
| 3625 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 3626 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 3627 |
|
|
case XML_TOK_NONE: /* start == end */ |
| 3628 |
|
|
|
| 3629 |
|
|
|
| 3630 |
|
|
|
| 3631 |
|
|
/* found end of entity value - can store it now */ |
| 3632 |
|
|
return storeEntityValue(parser, encoding, s, end); |
|
|
inline |
storeEntityValue too costly to inline (cost=630, threshold=625) |
entityValueInitProcessor |
|
|
inline |
storeEntityValue will not be inlined into entityValueInitProcessor |
entityValueInitProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
entityValueInitProcessor |
| 3633 |
|
|
|
| 3634 |
|
|
else if (tok == XML_TOK_XML_DECL) { |
| 3635 |
|
|
|
| 3636 |
|
|
result = processXmlDecl(parser, 0, start, next); |
|
|
inline |
processXmlDecl too costly to inline (cost=630, threshold=625) |
entityValueInitProcessor |
|
|
inline |
processXmlDecl will not be inlined into entityValueInitProcessor |
entityValueInitProcessor |
|
|
gvn |
load of type i8* eliminated in favor of phi |
entityValueInitProcessor |
| 3637 |
|
|
if (result != XML_ERROR_NONE) |
| 3638 |
|
|
|
| 3639 |
|
|
|
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
entityValueInitProcessor |
| 3640 |
|
|
|
| 3641 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
entityValueInitProcessor |
| 3642 |
|
|
|
| 3643 |
|
|
|
| 3644 |
|
|
return XML_ERROR_ABORTED; |
| 3645 |
|
|
|
| 3646 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
entityValueInitProcessor |
| 3647 |
|
|
|
| 3648 |
|
|
/* stop scanning for text declaration - we found one */ |
| 3649 |
|
|
processor = entityValueProcessor; |
| 3650 |
|
|
return entityValueProcessor(parser, next, end, nextPtr); |
|
|
inline |
entityValueProcessor can be inlined into entityValueInitProcessor with cost=150 (threshold=250) |
entityValueInitProcessor |
|
|
inline |
entityValueProcessor inlined into entityValueInitProcessor |
entityValueInitProcessor |
| 3651 |
|
|
|
| 3652 |
|
|
/* If we are at the end of the buffer, this would cause XmlPrologTok to |
| 3653 |
|
|
return XML_TOK_NONE on the next call, which would then cause the |
| 3654 |
|
|
function to exit with *nextPtr set to s - that is what we want for other |
| 3655 |
|
|
tokens, but not for the BOM - we would rather like to skip it; |
| 3656 |
|
|
then, when this routine is entered the next time, XmlPrologTok will |
| 3657 |
|
|
return XML_TOK_INVALID, since the BOM is still in the buffer |
| 3658 |
|
|
|
| 3659 |
|
|
else if (tok == XML_TOK_BOM && next == end && !ps_finalBuffer) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
entityValueInitProcessor |
|
|
licm |
hosting getelementptr |
entityValueInitProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
entityValueInitProcessor |
|
|
gvn |
load of type i8* eliminated in favor of phi |
entityValueInitProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
entityValueInitProcessor |
| 3660 |
|
|
|
| 3661 |
|
|
|
| 3662 |
|
|
|
| 3663 |
|
|
|
| 3664 |
|
|
|
| 3665 |
|
|
|
| 3666 |
|
|
|
| 3667 |
|
|
|
| 3668 |
|
|
static enum XML_Error PTRCALL |
| 3669 |
|
|
externalParEntProcessor(XML_Parser parser, |
| 3670 |
|
|
|
| 3671 |
|
|
|
| 3672 |
|
|
|
| 3673 |
|
|
|
| 3674 |
|
|
|
| 3675 |
|
|
|
| 3676 |
|
|
|
| 3677 |
|
|
tok = XmlPrologTok(encoding, s, end, &next); |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
externalParEntProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
externalParEntInitProcessor |
| 3678 |
|
|
|
| 3679 |
|
|
if (!ps_finalBuffer && tok != XML_TOK_INVALID) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalParEntProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalParEntInitProcessor |
| 3680 |
|
|
|
| 3681 |
|
|
|
| 3682 |
|
|
|
| 3683 |
|
|
|
| 3684 |
|
|
|
| 3685 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 3686 |
|
|
|
| 3687 |
|
|
return XML_ERROR_UNCLOSED_TOKEN; |
| 3688 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 3689 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 3690 |
|
|
case XML_TOK_NONE: /* start == end */ |
| 3691 |
|
|
|
| 3692 |
|
|
|
| 3693 |
|
|
|
| 3694 |
|
|
|
| 3695 |
|
|
/* This would cause the next stage, i.e. doProlog to be passed XML_TOK_BOM. |
| 3696 |
|
|
However, when parsing an external subset, doProlog will not accept a BOM |
| 3697 |
|
|
as valid, and report a syntax error, so we have to skip the BOM |
| 3698 |
|
|
|
| 3699 |
|
|
else if (tok == XML_TOK_BOM) { |
| 3700 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalParEntProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalParEntInitProcessor |
| 3701 |
|
|
tok = XmlPrologTok(encoding, s, end, &next); |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
externalParEntProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
externalParEntInitProcessor |
| 3702 |
|
|
|
| 3703 |
|
|
|
| 3704 |
|
|
processor = prologProcessor; |
| 3705 |
|
|
return doProlog(parser, encoding, s, end, tok, next, |
|
|
inline |
doProlog too costly to inline (cost=665, threshold=625) |
externalParEntProcessor |
|
|
inline |
doProlog will not be inlined into externalParEntProcessor |
externalParEntProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
externalParEntProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
externalParEntProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalParEntProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalParEntProcessor |
|
|
inline |
doProlog too costly to inline (cost=665, threshold=625) |
externalParEntInitProcessor |
|
|
inline |
doProlog will not be inlined into externalParEntInitProcessor |
externalParEntInitProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
externalParEntInitProcessor |
| 3706 |
|
|
nextPtr, (XML_Bool)!ps_finalBuffer); |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalParEntProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalParEntProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalParEntInitProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
externalParEntInitProcessor |
| 3707 |
|
|
|
| 3708 |
|
|
|
| 3709 |
|
|
static enum XML_Error PTRCALL |
| 3710 |
|
|
entityValueProcessor(XML_Parser parser, |
| 3711 |
|
|
|
| 3712 |
|
|
|
| 3713 |
|
|
|
| 3714 |
|
|
|
| 3715 |
|
|
|
| 3716 |
|
|
|
| 3717 |
|
|
const ENCODING *enc = encoding; |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
entityValueInitProcessor |
| 3718 |
|
|
|
| 3719 |
|
|
|
| 3720 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
entityValueInitProcessor |
|
|
loop-vectorize |
loop not vectorized |
entityValueInitProcessor |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
entityValueProcessor |
|
|
loop-vectorize |
loop not vectorized |
entityValueProcessor |
| 3721 |
|
|
tok = XmlPrologTok(enc, start, end, &next); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
entityValueProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
entityValueProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated in favor of load because it is clobbered by call |
entityValueProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
entityValueInitProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
entityValueInitProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated in favor of load because it is clobbered by call |
entityValueInitProcessor |
| 3722 |
|
|
|
| 3723 |
|
|
if (!ps_finalBuffer && tok != XML_TOK_INVALID) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
entityValueProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
entityValueInitProcessor |
| 3724 |
|
|
|
| 3725 |
|
|
|
| 3726 |
|
|
|
| 3727 |
|
|
|
| 3728 |
|
|
|
| 3729 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 3730 |
|
|
|
| 3731 |
|
|
return XML_ERROR_UNCLOSED_TOKEN; |
| 3732 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 3733 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 3734 |
|
|
case XML_TOK_NONE: /* start == end */ |
| 3735 |
|
|
|
| 3736 |
|
|
|
| 3737 |
|
|
|
| 3738 |
|
|
/* found end of entity value - can store it now */ |
| 3739 |
|
|
return storeEntityValue(parser, enc, s, end); |
|
|
inline |
storeEntityValue too costly to inline (cost=630, threshold=625) |
entityValueProcessor |
|
|
inline |
storeEntityValue will not be inlined into entityValueProcessor |
entityValueProcessor |
|
|
inline |
storeEntityValue too costly to inline (cost=630, threshold=625) |
entityValueInitProcessor |
|
|
inline |
storeEntityValue will not be inlined into entityValueInitProcessor |
entityValueInitProcessor |
| 3740 |
|
|
|
| 3741 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
entityValueProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
entityValueProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
entityValueInitProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
entityValueInitProcessor |
| 3742 |
|
|
|
| 3743 |
|
|
|
| 3744 |
|
|
|
| 3745 |
|
|
|
| 3746 |
|
|
|
| 3747 |
|
|
static enum XML_Error PTRCALL |
| 3748 |
|
|
prologProcessor(XML_Parser parser, |
| 3749 |
|
|
|
| 3750 |
|
|
|
| 3751 |
|
|
|
| 3752 |
|
|
|
| 3753 |
|
|
|
| 3754 |
|
|
int tok = XmlPrologTok(encoding, s, end, &next); |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
prologProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
prologInitProcessor |
|
|
gvn |
load eliminated by PRE |
prologInitProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
prologInitProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
ignoreSectionProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
ignoreSectionProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
ignoreSectionProcessor |
| 3755 |
|
|
return doProlog(parser, encoding, s, end, tok, next, |
|
|
inline |
doProlog too costly to inline (cost=665, threshold=625) |
prologProcessor |
|
|
inline |
doProlog will not be inlined into prologProcessor |
prologProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
prologProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
prologProcessor |
|
|
inline |
doProlog too costly to inline (cost=665, threshold=625) |
prologInitProcessor |
|
|
inline |
doProlog will not be inlined into prologInitProcessor |
prologInitProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
prologInitProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
prologInitProcessor |
|
|
inline |
doProlog too costly to inline (cost=665, threshold=625) |
ignoreSectionProcessor |
|
|
inline |
doProlog will not be inlined into ignoreSectionProcessor |
ignoreSectionProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
ignoreSectionProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
ignoreSectionProcessor |
| 3756 |
|
|
nextPtr, (XML_Bool)!ps_finalBuffer); |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
prologProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
prologInitProcessor |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
ignoreSectionProcessor |
| 3757 |
|
|
|
| 3758 |
|
|
|
| 3759 |
|
|
|
| 3760 |
|
|
doProlog(XML_Parser parser, |
| 3761 |
|
|
|
| 3762 |
|
|
|
| 3763 |
|
|
|
| 3764 |
|
|
|
| 3765 |
|
|
|
| 3766 |
|
|
|
| 3767 |
|
|
|
| 3768 |
|
|
|
| 3769 |
|
|
|
| 3770 |
|
|
static const XML_Char externalSubsetName[] = { ASCII_HASH , '\0' }; |
| 3771 |
|
|
|
| 3772 |
|
|
static const XML_Char atypeCDATA[] = |
| 3773 |
|
|
{ ASCII_C, ASCII_D, ASCII_A, ASCII_T, ASCII_A, '\0' }; |
| 3774 |
|
|
static const XML_Char atypeID[] = { ASCII_I, ASCII_D, '\0' }; |
| 3775 |
|
|
static const XML_Char atypeIDREF[] = |
| 3776 |
|
|
{ ASCII_I, ASCII_D, ASCII_R, ASCII_E, ASCII_F, '\0' }; |
| 3777 |
|
|
static const XML_Char atypeIDREFS[] = |
| 3778 |
|
|
{ ASCII_I, ASCII_D, ASCII_R, ASCII_E, ASCII_F, ASCII_S, '\0' }; |
| 3779 |
|
|
static const XML_Char atypeENTITY[] = |
| 3780 |
|
|
{ ASCII_E, ASCII_N, ASCII_T, ASCII_I, ASCII_T, ASCII_Y, '\0' }; |
| 3781 |
|
|
static const XML_Char atypeENTITIES[] = { ASCII_E, ASCII_N, |
| 3782 |
|
|
ASCII_T, ASCII_I, ASCII_T, ASCII_I, ASCII_E, ASCII_S, '\0' }; |
| 3783 |
|
|
static const XML_Char atypeNMTOKEN[] = { |
| 3784 |
|
|
ASCII_N, ASCII_M, ASCII_T, ASCII_O, ASCII_K, ASCII_E, ASCII_N, '\0' }; |
| 3785 |
|
|
static const XML_Char atypeNMTOKENS[] = { ASCII_N, ASCII_M, ASCII_T, |
| 3786 |
|
|
ASCII_O, ASCII_K, ASCII_E, ASCII_N, ASCII_S, '\0' }; |
| 3787 |
|
|
static const XML_Char notationPrefix[] = { ASCII_N, ASCII_O, ASCII_T, |
| 3788 |
|
|
ASCII_A, ASCII_T, ASCII_I, ASCII_O, ASCII_N, ASCII_LPAREN, '\0' }; |
| 3789 |
|
|
static const XML_Char enumValueSep[] = { ASCII_PIPE, '\0' }; |
| 3790 |
|
|
static const XML_Char enumValueStart[] = { ASCII_LPAREN, '\0' }; |
| 3791 |
|
|
|
| 3792 |
|
|
/* save one level of indirection */ |
| 3793 |
|
|
|
| 3794 |
|
|
|
| 3795 |
|
|
|
| 3796 |
|
|
|
| 3797 |
|
|
enum XML_Content_Quant quant; |
| 3798 |
|
|
|
| 3799 |
|
|
|
| 3800 |
|
|
|
| 3801 |
|
|
eventEndPP = &eventEndPtr; |
| 3802 |
|
|
|
| 3803 |
|
|
|
| 3804 |
|
|
eventPP = &(openInternalEntities->internalEventPtr); |
| 3805 |
|
|
eventEndPP = &(openInternalEntities->internalEventEndPtr); |
| 3806 |
|
|
|
| 3807 |
|
|
|
| 3808 |
|
|
|
| 3809 |
|
|
|
| 3810 |
|
|
XML_Bool handleDefault = XML_TRUE; |
| 3811 |
|
|
|
| 3812 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 3813 |
|
|
|
| 3814 |
|
|
if (haveMore && tok != XML_TOK_INVALID) { |
|
|
licm |
hosting icmp |
doProlog |
| 3815 |
|
|
|
| 3816 |
|
|
|
| 3817 |
|
|
|
| 3818 |
|
|
|
| 3819 |
|
|
|
| 3820 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of load |
doProlog |
| 3821 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 3822 |
|
|
|
| 3823 |
|
|
return XML_ERROR_UNCLOSED_TOKEN; |
| 3824 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 3825 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 3826 |
|
|
|
| 3827 |
|
|
|
| 3828 |
|
|
|
| 3829 |
|
|
|
| 3830 |
|
|
|
| 3831 |
|
|
/* for internal PE NOT referenced between declarations */ |
| 3832 |
|
|
if (enc != encoding && !openInternalEntities->betweenDecl) { |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
| 3833 |
|
|
|
| 3834 |
|
|
|
| 3835 |
|
|
|
| 3836 |
|
|
/* WFC: PE Between Declarations - must check that PE contains |
| 3837 |
|
|
complete markup, not only for external PEs, but also for |
| 3838 |
|
|
internal PEs if the reference occurs between declarations. |
| 3839 |
|
|
|
| 3840 |
|
|
if (isParamEntity || enc != encoding) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 3841 |
|
|
if (XmlTokenRole(&prologState, XML_TOK_NONE, end, end, enc) |
|
|
gvn |
load of type i32 (%struct.prolog_state*, i32, i8*, i8*, %struct.encoding*)* not eliminated because it is clobbered by store |
doProlog |
| 3842 |
|
|
|
| 3843 |
|
|
return XML_ERROR_INCOMPLETE_PE; |
| 3844 |
|
|
|
| 3845 |
|
|
|
| 3846 |
|
|
|
| 3847 |
|
|
|
| 3848 |
|
|
return XML_ERROR_NO_ELEMENTS; |
| 3849 |
|
|
|
| 3850 |
|
|
|
| 3851 |
|
|
|
| 3852 |
|
|
|
| 3853 |
|
|
|
| 3854 |
|
|
|
| 3855 |
|
|
role = XmlTokenRole(&prologState, tok, s, next, enc); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (%struct.prolog_state*, i32, i8*, i8*, %struct.encoding*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* eliminated in favor of phi |
doProlog |
| 3856 |
|
|
|
| 3857 |
|
|
|
| 3858 |
|
|
|
| 3859 |
|
|
enum XML_Error result = processXmlDecl(parser, 0, s, next); |
|
|
inline |
processXmlDecl too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
processXmlDecl will not be inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 3860 |
|
|
if (result != XML_ERROR_NONE) |
| 3861 |
|
|
|
| 3862 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 3863 |
|
|
handleDefault = XML_FALSE; |
| 3864 |
|
|
|
| 3865 |
|
|
|
| 3866 |
|
|
case XML_ROLE_DOCTYPE_NAME: |
| 3867 |
|
|
if (startDoctypeDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 3868 |
|
|
doctypeName = poolStoreString(&tempPool, enc, s, next); |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 3869 |
|
|
|
| 3870 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3871 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 3872 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 3873 |
|
|
handleDefault = XML_FALSE; |
| 3874 |
|
|
|
| 3875 |
|
|
doctypeSysid = NULL; /* always initialize to NULL */ |
|
|
licm |
hosting getelementptr |
doProlog |
| 3876 |
|
|
|
| 3877 |
|
|
case XML_ROLE_DOCTYPE_INTERNAL_SUBSET: |
| 3878 |
|
|
if (startDoctypeDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 3879 |
|
|
startDoctypeDeclHandler(handlerArg, doctypeName, doctypeSysid, |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3880 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3881 |
|
|
|
| 3882 |
|
|
|
|
|
inline |
poolClear can be inlined into doProlog with cost=30 (threshold=250) |
doProlog |
|
|
inline |
poolClear inlined into doProlog |
doProlog |
| 3883 |
|
|
handleDefault = XML_FALSE; |
| 3884 |
|
|
|
| 3885 |
|
|
|
| 3886 |
|
|
|
| 3887 |
|
|
|
| 3888 |
|
|
|
| 3889 |
|
|
enum XML_Error result = processXmlDecl(parser, 1, s, next); |
|
|
inline |
processXmlDecl too costly to inline (cost=645, threshold=625) |
doProlog |
|
|
inline |
processXmlDecl will not be inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 3890 |
|
|
if (result != XML_ERROR_NONE) |
| 3891 |
|
|
|
| 3892 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 3893 |
|
|
handleDefault = XML_FALSE; |
| 3894 |
|
|
|
| 3895 |
|
|
|
| 3896 |
|
|
|
| 3897 |
|
|
case XML_ROLE_DOCTYPE_PUBLIC_ID: |
| 3898 |
|
|
|
| 3899 |
|
|
useForeignDTD = XML_FALSE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 3900 |
|
|
declEntity = (ENTITY *)lookup(parser, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
lookup will not be inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
| 3901 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 3902 |
|
|
|
| 3903 |
|
|
|
| 3904 |
|
|
|
| 3905 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3906 |
|
|
|
| 3907 |
|
|
dtd->hasParamEntityRefs = XML_TRUE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 3908 |
|
|
if (startDoctypeDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 3909 |
|
|
|
| 3910 |
|
|
if (!XmlIsPublicId(enc, s, next, eventPP)) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 3911 |
|
|
return XML_ERROR_PUBLICID; |
| 3912 |
|
|
pubId = poolStoreString(&tempPool, enc, |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
| 3913 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 3914 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3915 |
|
|
|
| 3916 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3917 |
|
|
normalizePublicId(pubId); |
|
|
inline |
normalizePublicId can be inlined into doProlog with cost=75 (threshold=250) |
doProlog |
|
|
inline |
normalizePublicId inlined into doProlog |
doProlog |
| 3918 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 3919 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 3920 |
|
|
handleDefault = XML_FALSE; |
| 3921 |
|
|
|
| 3922 |
|
|
|
| 3923 |
|
|
|
| 3924 |
|
|
case XML_ROLE_ENTITY_PUBLIC_ID: |
| 3925 |
|
|
if (!XmlIsPublicId(enc, s, next, eventPP)) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 3926 |
|
|
return XML_ERROR_PUBLICID; |
| 3927 |
|
|
|
| 3928 |
|
|
if (dtd->keepProcessing && declEntity) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by store |
doProlog |
| 3929 |
|
|
XML_Char *tem = poolStoreString(&dtd->pool, |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
| 3930 |
|
|
|
| 3931 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
| 3932 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
| 3933 |
|
|
|
| 3934 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3935 |
|
|
|
|
|
inline |
normalizePublicId can be inlined into doProlog with cost=75 (threshold=250) |
doProlog |
|
|
inline |
normalizePublicId inlined into doProlog |
doProlog |
| 3936 |
|
|
declEntity->publicId = tem; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by store |
doProlog |
| 3937 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 3938 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by store |
doProlog |
| 3939 |
|
|
handleDefault = XML_FALSE; |
| 3940 |
|
|
|
| 3941 |
|
|
|
| 3942 |
|
|
case XML_ROLE_DOCTYPE_CLOSE: |
| 3943 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3944 |
|
|
startDoctypeDeclHandler(handlerArg, doctypeName, |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3945 |
|
|
doctypeSysid, doctypePubid, 0); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3946 |
|
|
|
|
|
inline |
poolClear can be inlined into doProlog with cost=30 (threshold=250) |
doProlog |
|
|
inline |
poolClear inlined into doProlog |
doProlog |
| 3947 |
|
|
handleDefault = XML_FALSE; |
| 3948 |
|
|
|
| 3949 |
|
|
/* doctypeSysid will be non-NULL in the case of a previous |
| 3950 |
|
|
XML_ROLE_DOCTYPE_SYSTEM_ID, even if startDoctypeDeclHandler |
| 3951 |
|
|
was not set, indicating an external subset |
| 3952 |
|
|
|
| 3953 |
|
|
|
| 3954 |
|
|
if (doctypeSysid || useForeignDTD) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 3955 |
|
|
XML_Bool hadParamEntityRefs = dtd->hasParamEntityRefs; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 3956 |
|
|
dtd->hasParamEntityRefs = XML_TRUE; |
| 3957 |
|
|
if (paramEntityParsing && externalEntityRefHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 3958 |
|
|
ENTITY *entity = (ENTITY *)lookup(parser, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
lookup will not be inlined into doProlog |
doProlog |
| 3959 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 3960 |
|
|
|
| 3961 |
|
|
|
| 3962 |
|
|
|
| 3963 |
|
|
return XML_ERROR_NO_MEMORY; |
| 3964 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 3965 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 3966 |
|
|
dtd->paramEntityRead = XML_FALSE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 3967 |
|
|
if (!externalEntityRefHandler(externalEntityRefHandlerArg, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
doProlog |
| 3968 |
|
|
|
| 3969 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load eliminated by PRE |
doProlog |
| 3970 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3971 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3972 |
|
|
return XML_ERROR_EXTERNAL_ENTITY_HANDLING; |
| 3973 |
|
|
if (dtd->paramEntityRead) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated in favor of store because it is clobbered by call |
doProlog |
| 3974 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 3975 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (i8*)* not eliminated because it is clobbered by call |
doProlog |
| 3976 |
|
|
!notStandaloneHandler(handlerArg)) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3977 |
|
|
return XML_ERROR_NOT_STANDALONE; |
| 3978 |
|
|
|
| 3979 |
|
|
/* if we didn't read the foreign DTD then this means that there |
| 3980 |
|
|
is no external subset and we must reset dtd->hasParamEntityRefs |
| 3981 |
|
|
|
| 3982 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 3983 |
|
|
dtd->hasParamEntityRefs = hadParamEntityRefs; |
| 3984 |
|
|
/* end of DTD - no need to update dtd->keepProcessing */ |
| 3985 |
|
|
|
| 3986 |
|
|
useForeignDTD = XML_FALSE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 3987 |
|
|
|
| 3988 |
|
|
|
| 3989 |
|
|
if (endDoctypeDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
doProlog |
| 3990 |
|
|
endDoctypeDeclHandler(handlerArg); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 3991 |
|
|
handleDefault = XML_FALSE; |
| 3992 |
|
|
|
| 3993 |
|
|
|
| 3994 |
|
|
case XML_ROLE_INSTANCE_START: |
| 3995 |
|
|
|
| 3996 |
|
|
/* if there is no DOCTYPE declaration then now is the |
| 3997 |
|
|
last chance to read the foreign DTD |
| 3998 |
|
|
|
| 3999 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4000 |
|
|
XML_Bool hadParamEntityRefs = dtd->hasParamEntityRefs; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4001 |
|
|
dtd->hasParamEntityRefs = XML_TRUE; |
| 4002 |
|
|
if (paramEntityParsing && externalEntityRefHandler) { |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4003 |
|
|
ENTITY *entity = (ENTITY *)lookup(parser, &dtd->paramEntities, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
lookup will not be inlined into doProlog |
doProlog |
| 4004 |
|
|
|
| 4005 |
|
|
|
| 4006 |
|
|
|
| 4007 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4008 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4009 |
|
|
dtd->paramEntityRead = XML_FALSE; |
| 4010 |
|
|
if (!externalEntityRefHandler(externalEntityRefHandlerArg, |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
doProlog |
| 4011 |
|
|
|
| 4012 |
|
|
|
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
doProlog |
| 4013 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4014 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4015 |
|
|
return XML_ERROR_EXTERNAL_ENTITY_HANDLING; |
| 4016 |
|
|
if (dtd->paramEntityRead) { |
|
|
gvn |
load of type i8 not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4017 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4018 |
|
|
|
|
|
gvn |
load of type i32 (i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4019 |
|
|
!notStandaloneHandler(handlerArg)) |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4020 |
|
|
return XML_ERROR_NOT_STANDALONE; |
| 4021 |
|
|
|
| 4022 |
|
|
/* if we didn't read the foreign DTD then this means that there |
| 4023 |
|
|
is no external subset and we must reset dtd->hasParamEntityRefs |
| 4024 |
|
|
|
| 4025 |
|
|
|
| 4026 |
|
|
dtd->hasParamEntityRefs = hadParamEntityRefs; |
| 4027 |
|
|
/* end of DTD - no need to update dtd->keepProcessing */ |
| 4028 |
|
|
|
| 4029 |
|
|
|
| 4030 |
|
|
|
| 4031 |
|
|
processor = contentProcessor; |
| 4032 |
|
|
return contentProcessor(parser, s, end, nextPtr); |
|
|
inline |
contentProcessor can be inlined into doProlog with cost=85 (threshold=250) |
doProlog |
|
|
inline |
contentProcessor inlined into doProlog |
doProlog |
| 4033 |
|
|
case XML_ROLE_ATTLIST_ELEMENT_NAME: |
| 4034 |
|
|
declElementType = getElementType(parser, enc, s, next); |
|
|
inline |
getElementType can be inlined into doProlog with cost=160 (threshold=250) |
doProlog |
|
|
inline |
getElementType inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4035 |
|
|
|
| 4036 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4037 |
|
|
goto checkAttListDeclHandler; |
| 4038 |
|
|
case XML_ROLE_ATTRIBUTE_NAME: |
| 4039 |
|
|
declAttributeId = getAttributeId(parser, enc, s, next); |
|
|
inline |
getAttributeId too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
getAttributeId will not be inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4040 |
|
|
|
| 4041 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4042 |
|
|
declAttributeIsCdata = XML_FALSE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4043 |
|
|
declAttributeType = NULL; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4044 |
|
|
declAttributeIsId = XML_FALSE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4045 |
|
|
goto checkAttListDeclHandler; |
| 4046 |
|
|
case XML_ROLE_ATTRIBUTE_TYPE_CDATA: |
| 4047 |
|
|
declAttributeIsCdata = XML_TRUE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4048 |
|
|
declAttributeType = atypeCDATA; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4049 |
|
|
goto checkAttListDeclHandler; |
| 4050 |
|
|
case XML_ROLE_ATTRIBUTE_TYPE_ID: |
| 4051 |
|
|
declAttributeIsId = XML_TRUE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4052 |
|
|
declAttributeType = atypeID; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4053 |
|
|
goto checkAttListDeclHandler; |
| 4054 |
|
|
case XML_ROLE_ATTRIBUTE_TYPE_IDREF: |
| 4055 |
|
|
declAttributeType = atypeIDREF; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4056 |
|
|
goto checkAttListDeclHandler; |
| 4057 |
|
|
case XML_ROLE_ATTRIBUTE_TYPE_IDREFS: |
| 4058 |
|
|
declAttributeType = atypeIDREFS; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4059 |
|
|
goto checkAttListDeclHandler; |
| 4060 |
|
|
case XML_ROLE_ATTRIBUTE_TYPE_ENTITY: |
| 4061 |
|
|
declAttributeType = atypeENTITY; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4062 |
|
|
goto checkAttListDeclHandler; |
| 4063 |
|
|
case XML_ROLE_ATTRIBUTE_TYPE_ENTITIES: |
| 4064 |
|
|
declAttributeType = atypeENTITIES; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4065 |
|
|
goto checkAttListDeclHandler; |
| 4066 |
|
|
case XML_ROLE_ATTRIBUTE_TYPE_NMTOKEN: |
| 4067 |
|
|
declAttributeType = atypeNMTOKEN; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4068 |
|
|
goto checkAttListDeclHandler; |
| 4069 |
|
|
case XML_ROLE_ATTRIBUTE_TYPE_NMTOKENS: |
| 4070 |
|
|
declAttributeType = atypeNMTOKENS; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4071 |
|
|
|
| 4072 |
|
|
if (dtd->keepProcessing && attlistDeclHandler) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 4073 |
|
|
handleDefault = XML_FALSE; |
| 4074 |
|
|
|
| 4075 |
|
|
case XML_ROLE_ATTRIBUTE_ENUM_VALUE: |
| 4076 |
|
|
case XML_ROLE_ATTRIBUTE_NOTATION_VALUE: |
| 4077 |
|
|
if (dtd->keepProcessing && attlistDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 4078 |
|
|
|
| 4079 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4080 |
|
|
|
| 4081 |
|
|
|
| 4082 |
|
|
|
| 4083 |
|
|
prefix = (role == XML_ROLE_ATTRIBUTE_NOTATION_VALUE |
| 4084 |
|
|
|
| 4085 |
|
|
|
| 4086 |
|
|
|
| 4087 |
|
|
if (!poolAppendString(&tempPool, prefix)) |
|
|
inline |
poolAppendString can be inlined into doProlog with cost=-14920 (threshold=250) |
doProlog |
|
|
inline |
poolAppendString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
| 4088 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4089 |
|
|
if (!poolAppend(&tempPool, enc, s, next)) |
|
|
inline |
poolAppend can be inlined into doProlog with cost=-14875 (threshold=250) |
doProlog |
|
|
inline |
poolAppend inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
| 4090 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4091 |
|
|
declAttributeType = tempPool.start; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
doProlog |
| 4092 |
|
|
handleDefault = XML_FALSE; |
| 4093 |
|
|
|
| 4094 |
|
|
|
| 4095 |
|
|
case XML_ROLE_IMPLIED_ATTRIBUTE_VALUE: |
| 4096 |
|
|
case XML_ROLE_REQUIRED_ATTRIBUTE_VALUE: |
| 4097 |
|
|
if (dtd->keepProcessing) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4098 |
|
|
if (!defineAttribute(declElementType, declAttributeId, |
|
|
inline |
defineAttribute can be inlined into doProlog with cost=245 (threshold=250) |
doProlog |
|
|
inline |
defineAttribute inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ELEMENT_TYPE* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
doProlog |
| 4099 |
|
|
declAttributeIsCdata, declAttributeIsId, |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4100 |
|
|
|
| 4101 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4102 |
|
|
if (attlistDeclHandler && declAttributeType) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4103 |
|
|
if (*declAttributeType == XML_T(ASCII_LPAREN) |
| 4104 |
|
|
|| (*declAttributeType == XML_T(ASCII_N) |
| 4105 |
|
|
&& declAttributeType[1] == XML_T(ASCII_O))) { |
| 4106 |
|
|
/* Enumerated or Notation type */ |
| 4107 |
|
|
if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load eliminated by PRE |
doProlog |
| 4108 |
|
|
|| !poolAppendChar(&tempPool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load eliminated by PRE |
doProlog |
| 4109 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4110 |
|
|
declAttributeType = tempPool.start; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 4111 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 4112 |
|
|
|
| 4113 |
|
|
|
| 4114 |
|
|
attlistDeclHandler(handlerArg, declElementType->name, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.ELEMENT_TYPE* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4115 |
|
|
declAttributeId->name, declAttributeType, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.attribute_id* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doProlog |
| 4116 |
|
|
0, role == XML_ROLE_REQUIRED_ATTRIBUTE_VALUE); |
| 4117 |
|
|
|
|
|
inline |
poolClear can be inlined into doProlog with cost=30 (threshold=250) |
doProlog |
|
|
inline |
poolClear inlined into doProlog |
doProlog |
| 4118 |
|
|
handleDefault = XML_FALSE; |
| 4119 |
|
|
|
| 4120 |
|
|
|
| 4121 |
|
|
|
| 4122 |
|
|
case XML_ROLE_DEFAULT_ATTRIBUTE_VALUE: |
| 4123 |
|
|
case XML_ROLE_FIXED_ATTRIBUTE_VALUE: |
| 4124 |
|
|
if (dtd->keepProcessing) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4125 |
|
|
|
| 4126 |
|
|
|
| 4127 |
|
|
storeAttributeValue(parser, enc, declAttributeIsCdata, |
|
|
inline |
storeAttributeValue can be inlined into doProlog with cost=-14865 (threshold=250) |
doProlog |
|
|
inline |
storeAttributeValue inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4128 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4129 |
|
|
next - enc->minBytesPerChar, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4130 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 4131 |
|
|
|
| 4132 |
|
|
|
| 4133 |
|
|
attVal = poolStart(&dtd->pool); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4134 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 4135 |
|
|
/* ID attributes aren't allowed to have a default */ |
| 4136 |
|
|
if (!defineAttribute(declElementType, declAttributeId, |
|
|
inline |
defineAttribute can be inlined into doProlog with cost=-14795 (threshold=250) |
doProlog |
|
|
inline |
defineAttribute inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ELEMENT_TYPE* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by store |
doProlog |
| 4137 |
|
|
declAttributeIsCdata, XML_FALSE, attVal, parser)) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
doProlog |
| 4138 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4139 |
|
|
if (attlistDeclHandler && declAttributeType) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4140 |
|
|
if (*declAttributeType == XML_T(ASCII_LPAREN) |
| 4141 |
|
|
|| (*declAttributeType == XML_T(ASCII_N) |
| 4142 |
|
|
&& declAttributeType[1] == XML_T(ASCII_O))) { |
| 4143 |
|
|
/* Enumerated or Notation type */ |
| 4144 |
|
|
if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load eliminated by PRE |
doProlog |
| 4145 |
|
|
|| !poolAppendChar(&tempPool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load eliminated by PRE |
doProlog |
| 4146 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4147 |
|
|
declAttributeType = tempPool.start; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 4148 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 4149 |
|
|
|
| 4150 |
|
|
|
| 4151 |
|
|
attlistDeclHandler(handlerArg, declElementType->name, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.ELEMENT_TYPE* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4152 |
|
|
declAttributeId->name, declAttributeType, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.attribute_id* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doProlog |
| 4153 |
|
|
|
| 4154 |
|
|
role == XML_ROLE_FIXED_ATTRIBUTE_VALUE); |
| 4155 |
|
|
|
|
|
inline |
poolClear can be inlined into doProlog with cost=30 (threshold=250) |
doProlog |
|
|
inline |
poolClear inlined into doProlog |
doProlog |
| 4156 |
|
|
handleDefault = XML_FALSE; |
| 4157 |
|
|
|
| 4158 |
|
|
|
| 4159 |
|
|
|
| 4160 |
|
|
case XML_ROLE_ENTITY_VALUE: |
| 4161 |
|
|
if (dtd->keepProcessing) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4162 |
|
|
enum XML_Error result = storeEntityValue(parser, enc, |
|
|
inline |
storeEntityValue too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
storeEntityValue will not be inlined into doProlog |
doProlog |
| 4163 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4164 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4165 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by call |
doProlog |
| 4166 |
|
|
declEntity->textPtr = poolStart(&dtd->entityValuePool); |
| 4167 |
|
|
declEntity->textLen = (int)(poolLength(&dtd->entityValuePool)); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 eliminated in favor of load |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* eliminated in favor of load |
doProlog |
| 4168 |
|
|
poolFinish(&dtd->entityValuePool); |
| 4169 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4170 |
|
|
|
| 4171 |
|
|
entityDeclHandler(handlerArg, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4172 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4173 |
|
|
|
| 4174 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4175 |
|
|
|
| 4176 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4177 |
|
|
handleDefault = XML_FALSE; |
| 4178 |
|
|
|
| 4179 |
|
|
|
| 4180 |
|
|
|
| 4181 |
|
|
poolDiscard(&dtd->entityValuePool); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
| 4182 |
|
|
if (result != XML_ERROR_NONE) |
| 4183 |
|
|
|
| 4184 |
|
|
|
| 4185 |
|
|
|
| 4186 |
|
|
case XML_ROLE_DOCTYPE_SYSTEM_ID: |
| 4187 |
|
|
|
| 4188 |
|
|
useForeignDTD = XML_FALSE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4189 |
|
|
|
| 4190 |
|
|
dtd->hasParamEntityRefs = XML_TRUE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4191 |
|
|
if (startDoctypeDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 4192 |
|
|
doctypeSysid = poolStoreString(&tempPool, enc, |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
| 4193 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4194 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4195 |
|
|
if (doctypeSysid == NULL) |
| 4196 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4197 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 4198 |
|
|
handleDefault = XML_FALSE; |
| 4199 |
|
|
|
| 4200 |
|
|
|
| 4201 |
|
|
|
| 4202 |
|
|
/* use externalSubsetName to make doctypeSysid non-NULL |
| 4203 |
|
|
for the case where no startDoctypeDeclHandler is set */ |
| 4204 |
|
|
doctypeSysid = externalSubsetName; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4205 |
|
|
|
| 4206 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4207 |
|
|
|
| 4208 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4209 |
|
|
|
| 4210 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 (i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4211 |
|
|
&& !notStandaloneHandler(handlerArg)) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4212 |
|
|
return XML_ERROR_NOT_STANDALONE; |
| 4213 |
|
|
|
| 4214 |
|
|
|
| 4215 |
|
|
|
| 4216 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by call |
doProlog |
| 4217 |
|
|
declEntity = (ENTITY *)lookup(parser, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
lookup will not be inlined into doProlog |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
| 4218 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 4219 |
|
|
|
| 4220 |
|
|
|
| 4221 |
|
|
|
| 4222 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4223 |
|
|
declEntity->publicId = NULL; |
| 4224 |
|
|
|
| 4225 |
|
|
|
| 4226 |
|
|
|
| 4227 |
|
|
case XML_ROLE_ENTITY_SYSTEM_ID: |
| 4228 |
|
|
if (dtd->keepProcessing && declEntity) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by call |
doProlog |
| 4229 |
|
|
declEntity->systemId = poolStoreString(&dtd->pool, enc, |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 4230 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4231 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4232 |
|
|
if (!declEntity->systemId) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* eliminated in favor of load |
doProlog |
|
|
gvn |
load of type i8* eliminated in favor of phi |
doProlog |
| 4233 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4234 |
|
|
declEntity->base = curBase; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4235 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4236 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4237 |
|
|
handleDefault = XML_FALSE; |
| 4238 |
|
|
|
| 4239 |
|
|
|
| 4240 |
|
|
case XML_ROLE_ENTITY_COMPLETE: |
| 4241 |
|
|
if (dtd->keepProcessing && declEntity && entityDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4242 |
|
|
|
| 4243 |
|
|
entityDeclHandler(handlerArg, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4244 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4245 |
|
|
|
| 4246 |
|
|
|
| 4247 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4248 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4249 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4250 |
|
|
|
| 4251 |
|
|
handleDefault = XML_FALSE; |
| 4252 |
|
|
|
| 4253 |
|
|
|
| 4254 |
|
|
case XML_ROLE_ENTITY_NOTATION_NAME: |
| 4255 |
|
|
if (dtd->keepProcessing && declEntity) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by call |
doProlog |
| 4256 |
|
|
declEntity->notation = poolStoreString(&dtd->pool, enc, s, next); |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 4257 |
|
|
if (!declEntity->notation) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* eliminated in favor of load |
doProlog |
|
|
gvn |
load of type i8* eliminated in favor of phi |
doProlog |
| 4258 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4259 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4260 |
|
|
if (unparsedEntityDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4261 |
|
|
|
| 4262 |
|
|
unparsedEntityDeclHandler(handlerArg, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4263 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4264 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4265 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4266 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4267 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4268 |
|
|
handleDefault = XML_FALSE; |
| 4269 |
|
|
|
| 4270 |
|
|
else if (entityDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4271 |
|
|
|
| 4272 |
|
|
entityDeclHandler(handlerArg, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4273 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4274 |
|
|
|
| 4275 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4276 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4277 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4278 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4279 |
|
|
handleDefault = XML_FALSE; |
| 4280 |
|
|
|
| 4281 |
|
|
|
| 4282 |
|
|
|
| 4283 |
|
|
case XML_ROLE_GENERAL_ENTITY_NAME: |
| 4284 |
|
|
|
| 4285 |
|
|
if (XmlPredefinedEntityName(enc, s, next)) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4286 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 4287 |
|
|
|
| 4288 |
|
|
|
| 4289 |
|
|
if (dtd->keepProcessing) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4290 |
|
|
const XML_Char *name = poolStoreString(&dtd->pool, enc, s, next); |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4291 |
|
|
|
| 4292 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4293 |
|
|
declEntity = (ENTITY *)lookup(parser, &dtd->generalEntities, name, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
lookup will not be inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
| 4294 |
|
|
|
| 4295 |
|
|
|
| 4296 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4297 |
|
|
if (declEntity->name != name) { |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4298 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4299 |
|
|
|
| 4300 |
|
|
|
| 4301 |
|
|
|
| 4302 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4303 |
|
|
declEntity->publicId = NULL; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* eliminated in favor of inttoptr |
doProlog |
| 4304 |
|
|
declEntity->is_param = XML_FALSE; |
| 4305 |
|
|
/* if we have a parent parser or are reading an internal parameter |
| 4306 |
|
|
entity, then the entity declaration is not considered "internal" |
| 4307 |
|
|
|
| 4308 |
|
|
declEntity->is_internal = !(parentParser || openInternalEntities); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
| 4309 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4310 |
|
|
handleDefault = XML_FALSE; |
| 4311 |
|
|
|
| 4312 |
|
|
|
| 4313 |
|
|
|
| 4314 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4315 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 4316 |
|
|
|
| 4317 |
|
|
|
| 4318 |
|
|
|
| 4319 |
|
|
case XML_ROLE_PARAM_ENTITY_NAME: |
| 4320 |
|
|
|
| 4321 |
|
|
if (dtd->keepProcessing) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4322 |
|
|
const XML_Char *name = poolStoreString(&dtd->pool, enc, s, next); |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4323 |
|
|
|
| 4324 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4325 |
|
|
declEntity = (ENTITY *)lookup(parser, &dtd->paramEntities, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
lookup will not be inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
| 4326 |
|
|
|
| 4327 |
|
|
|
| 4328 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4329 |
|
|
if (declEntity->name != name) { |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4330 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4331 |
|
|
|
| 4332 |
|
|
|
| 4333 |
|
|
|
| 4334 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4335 |
|
|
declEntity->publicId = NULL; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.ENTITY* eliminated in favor of inttoptr |
doProlog |
| 4336 |
|
|
declEntity->is_param = XML_TRUE; |
| 4337 |
|
|
/* if we have a parent parser or are reading an internal parameter |
| 4338 |
|
|
entity, then the entity declaration is not considered "internal" |
| 4339 |
|
|
|
| 4340 |
|
|
declEntity->is_internal = !(parentParser || openInternalEntities); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
| 4341 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4342 |
|
|
handleDefault = XML_FALSE; |
| 4343 |
|
|
|
| 4344 |
|
|
|
| 4345 |
|
|
|
| 4346 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4347 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 4348 |
|
|
|
| 4349 |
|
|
|
| 4350 |
|
|
|
| 4351 |
|
|
|
| 4352 |
|
|
|
| 4353 |
|
|
case XML_ROLE_NOTATION_NAME: |
| 4354 |
|
|
declNotationPublicId = NULL; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4355 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 4356 |
|
|
if (notationDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
| 4357 |
|
|
declNotationName = poolStoreString(&tempPool, enc, s, next); |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4358 |
|
|
|
| 4359 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4360 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 4361 |
|
|
handleDefault = XML_FALSE; |
| 4362 |
|
|
|
| 4363 |
|
|
|
| 4364 |
|
|
case XML_ROLE_NOTATION_PUBLIC_ID: |
| 4365 |
|
|
if (!XmlIsPublicId(enc, s, next, eventPP)) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4366 |
|
|
return XML_ERROR_PUBLICID; |
| 4367 |
|
|
if (declNotationName) { /* means notationDeclHandler != NULL */ |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4368 |
|
|
XML_Char *tem = poolStoreString(&tempPool, |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
| 4369 |
|
|
|
| 4370 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4371 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4372 |
|
|
|
| 4373 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4374 |
|
|
|
|
|
inline |
normalizePublicId can be inlined into doProlog with cost=-14925 (threshold=250) |
doProlog |
|
|
inline |
normalizePublicId inlined into doProlog |
doProlog |
| 4375 |
|
|
declNotationPublicId = tem; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4376 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
| 4377 |
|
|
handleDefault = XML_FALSE; |
| 4378 |
|
|
|
| 4379 |
|
|
|
| 4380 |
|
|
case XML_ROLE_NOTATION_SYSTEM_ID: |
| 4381 |
|
|
if (declNotationName && notationDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4382 |
|
|
|
| 4383 |
|
|
= poolStoreString(&tempPool, enc, |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
| 4384 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4385 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4386 |
|
|
|
| 4387 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4388 |
|
|
|
| 4389 |
|
|
notationDeclHandler(handlerArg, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4390 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doProlog |
| 4391 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4392 |
|
|
|
| 4393 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4394 |
|
|
handleDefault = XML_FALSE; |
| 4395 |
|
|
|
| 4396 |
|
|
|
|
|
inline |
poolClear can be inlined into doProlog with cost=30 (threshold=250) |
doProlog |
|
|
inline |
poolClear inlined into doProlog |
doProlog |
| 4397 |
|
|
|
| 4398 |
|
|
case XML_ROLE_NOTATION_NO_SYSTEM_ID: |
| 4399 |
|
|
if (declNotationPublicId && notationDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4400 |
|
|
|
| 4401 |
|
|
notationDeclHandler(handlerArg, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4402 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4403 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4404 |
|
|
|
| 4405 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doProlog |
| 4406 |
|
|
handleDefault = XML_FALSE; |
| 4407 |
|
|
|
| 4408 |
|
|
|
|
|
inline |
poolClear can be inlined into doProlog with cost=30 (threshold=250) |
doProlog |
|
|
inline |
poolClear inlined into doProlog |
doProlog |
| 4409 |
|
|
|
| 4410 |
|
|
|
| 4411 |
|
|
|
| 4412 |
|
|
case XML_TOK_PARAM_ENTITY_REF: |
| 4413 |
|
|
/* PE references in internal subset are |
| 4414 |
|
|
not allowed within declarations. */ |
| 4415 |
|
|
return XML_ERROR_PARAM_ENTITY_REF; |
| 4416 |
|
|
|
| 4417 |
|
|
return XML_ERROR_MISPLACED_XML_PI; |
| 4418 |
|
|
|
| 4419 |
|
|
|
| 4420 |
|
|
|
| 4421 |
|
|
|
| 4422 |
|
|
case XML_ROLE_IGNORE_SECT: |
| 4423 |
|
|
|
| 4424 |
|
|
|
| 4425 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 4426 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doProlog with cost=165 (threshold=250) |
doProlog |
|
|
inline |
reportDefault inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4427 |
|
|
handleDefault = XML_FALSE; |
| 4428 |
|
|
result = doIgnoreSection(parser, enc, &next, end, nextPtr, haveMore); |
|
|
inline |
doIgnoreSection can be inlined into doProlog with cost=170 (threshold=250) |
doProlog |
|
|
inline |
doIgnoreSection inlined into doProlog |
doProlog |
| 4429 |
|
|
if (result != XML_ERROR_NONE) |
| 4430 |
|
|
|
| 4431 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load eliminated by PRE |
doProlog |
| 4432 |
|
|
processor = ignoreSectionProcessor; |
| 4433 |
|
|
|
| 4434 |
|
|
|
| 4435 |
|
|
|
| 4436 |
|
|
|
| 4437 |
|
|
|
| 4438 |
|
|
case XML_ROLE_GROUP_OPEN: |
| 4439 |
|
|
if (prologState.level >= groupSize) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4440 |
|
|
|
| 4441 |
|
|
char *temp = (char *)REALLOC(groupConnector, groupSize *= 2); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4442 |
|
|
|
| 4443 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4444 |
|
|
|
| 4445 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32* not eliminated because it is clobbered by call |
doProlog |
| 4446 |
|
|
int *temp = (int *)REALLOC(dtd->scaffIndex, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4447 |
|
|
groupSize * sizeof(int)); |
| 4448 |
|
|
|
| 4449 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4450 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
| 4451 |
|
|
|
| 4452 |
|
|
|
| 4453 |
|
|
|
| 4454 |
|
|
groupConnector = (char *)MALLOC(groupSize = 32); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
doProlog |
| 4455 |
|
|
|
| 4456 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4457 |
|
|
|
| 4458 |
|
|
|
| 4459 |
|
|
groupConnector[prologState.level] = 0; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doProlog |
| 4460 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
| 4461 |
|
|
int myindex = nextScaffoldPart(parser); |
|
|
inline |
nextScaffoldPart too costly to inline (cost=305, threshold=250) |
doProlog |
|
|
inline |
nextScaffoldPart will not be inlined into doProlog |
doProlog |
| 4462 |
|
|
|
| 4463 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4464 |
|
|
dtd->scaffIndex[dtd->scaffLevel] = myindex; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4465 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by store |
doProlog |
| 4466 |
|
|
dtd->scaffold[myindex].type = XML_CTYPE_SEQ; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated because it is clobbered by call |
doProlog |
| 4467 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
| 4468 |
|
|
handleDefault = XML_FALSE; |
| 4469 |
|
|
|
| 4470 |
|
|
|
| 4471 |
|
|
case XML_ROLE_GROUP_SEQUENCE: |
| 4472 |
|
|
if (groupConnector[prologState.level] == ASCII_PIPE) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4473 |
|
|
|
| 4474 |
|
|
groupConnector[prologState.level] = ASCII_COMMA; |
| 4475 |
|
|
if (dtd->in_eldecl && elementDeclHandler) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by store |
doProlog |
| 4476 |
|
|
handleDefault = XML_FALSE; |
| 4477 |
|
|
|
| 4478 |
|
|
case XML_ROLE_GROUP_CHOICE: |
| 4479 |
|
|
if (groupConnector[prologState.level] == ASCII_COMMA) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4480 |
|
|
|
| 4481 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4482 |
|
|
&& !groupConnector[prologState.level] |
| 4483 |
|
|
&& (dtd->scaffold[dtd->scaffIndex[dtd->scaffLevel - 1]].type |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4484 |
|
|
|
| 4485 |
|
|
|
| 4486 |
|
|
dtd->scaffold[dtd->scaffIndex[dtd->scaffLevel - 1]].type |
| 4487 |
|
|
|
| 4488 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
| 4489 |
|
|
handleDefault = XML_FALSE; |
| 4490 |
|
|
|
| 4491 |
|
|
groupConnector[prologState.level] = ASCII_PIPE; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* eliminated in favor of load |
doProlog |
|
|
gvn |
load of type i32 eliminated in favor of load |
doProlog |
| 4492 |
|
|
|
| 4493 |
|
|
case XML_ROLE_PARAM_ENTITY_REF: |
| 4494 |
|
|
|
| 4495 |
|
|
case XML_ROLE_INNER_PARAM_ENTITY_REF: |
| 4496 |
|
|
dtd->hasParamEntityRefs = XML_TRUE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4497 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4498 |
|
|
dtd->keepProcessing = dtd->standalone; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4499 |
|
|
|
| 4500 |
|
|
|
| 4501 |
|
|
|
| 4502 |
|
|
name = poolStoreString(&dtd->pool, enc, |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
| 4503 |
|
|
s + enc->minBytesPerChar, |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4504 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4505 |
|
|
|
| 4506 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4507 |
|
|
entity = (ENTITY *)lookup(parser, &dtd->paramEntities, name, 0); |
|
|
inline |
lookup can be inlined into doProlog with cost=205 (threshold=250) |
doProlog |
|
|
inline |
lookup inlined into doProlog |
doProlog |
| 4508 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
doProlog |
| 4509 |
|
|
/* first, determine if a check for an existing declaration is needed; |
| 4510 |
|
|
if yes, check that the entity exists, and that it is internal, |
| 4511 |
|
|
otherwise call the skipped entity handler |
| 4512 |
|
|
|
| 4513 |
|
|
if (prologState.documentEntity && |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
| 4514 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
| 4515 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
| 4516 |
|
|
: !dtd->hasParamEntityRefs)) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated in favor of store because it is clobbered by store |
doProlog |
| 4517 |
|
|
|
| 4518 |
|
|
return XML_ERROR_UNDEFINED_ENTITY; |
| 4519 |
|
|
else if (!entity->is_internal) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4520 |
|
|
return XML_ERROR_ENTITY_DECLARED_IN_PE; |
| 4521 |
|
|
|
| 4522 |
|
|
|
| 4523 |
|
|
dtd->keepProcessing = dtd->standalone; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
| 4524 |
|
|
/* cannot report skipped entities in declarations */ |
| 4525 |
|
|
if ((role == XML_ROLE_PARAM_ENTITY_REF) && skippedEntityHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
| 4526 |
|
|
skippedEntityHandler(handlerArg, name, 1); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4527 |
|
|
handleDefault = XML_FALSE; |
| 4528 |
|
|
|
| 4529 |
|
|
|
| 4530 |
|
|
|
| 4531 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4532 |
|
|
return XML_ERROR_RECURSIVE_ENTITY_REF; |
| 4533 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4534 |
|
|
|
| 4535 |
|
|
|
| 4536 |
|
|
(role == XML_ROLE_PARAM_ENTITY_REF ? XML_TRUE : XML_FALSE); |
| 4537 |
|
|
result = processInternalEntity(parser, entity, betweenDecl); |
|
|
inline |
processInternalEntity too costly to inline (cost=365, threshold=250) |
doProlog |
|
|
inline |
processInternalEntity will not be inlined into doProlog |
doProlog |
| 4538 |
|
|
if (result != XML_ERROR_NONE) |
| 4539 |
|
|
|
| 4540 |
|
|
handleDefault = XML_FALSE; |
| 4541 |
|
|
|
| 4542 |
|
|
|
| 4543 |
|
|
if (externalEntityRefHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by store |
doProlog |
| 4544 |
|
|
dtd->paramEntityRead = XML_FALSE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4545 |
|
|
|
| 4546 |
|
|
if (!externalEntityRefHandler(externalEntityRefHandlerArg, |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by store |
doProlog |
| 4547 |
|
|
|
| 4548 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4549 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4550 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4551 |
|
|
entity->open = XML_FALSE; |
| 4552 |
|
|
return XML_ERROR_EXTERNAL_ENTITY_HANDLING; |
| 4553 |
|
|
|
| 4554 |
|
|
entity->open = XML_FALSE; |
| 4555 |
|
|
handleDefault = XML_FALSE; |
| 4556 |
|
|
if (!dtd->paramEntityRead) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4557 |
|
|
dtd->keepProcessing = dtd->standalone; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4558 |
|
|
|
| 4559 |
|
|
|
| 4560 |
|
|
|
| 4561 |
|
|
|
| 4562 |
|
|
dtd->keepProcessing = dtd->standalone; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
| 4563 |
|
|
|
| 4564 |
|
|
|
| 4565 |
|
|
|
| 4566 |
|
|
|
| 4567 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load eliminated by PRE |
doProlog |
| 4568 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 (i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 (i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4569 |
|
|
!notStandaloneHandler(handlerArg)) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4570 |
|
|
return XML_ERROR_NOT_STANDALONE; |
| 4571 |
|
|
|
| 4572 |
|
|
|
| 4573 |
|
|
/* Element declaration stuff */ |
| 4574 |
|
|
|
| 4575 |
|
|
case XML_ROLE_ELEMENT_NAME: |
| 4576 |
|
|
if (elementDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
| 4577 |
|
|
declElementType = getElementType(parser, enc, s, next); |
|
|
inline |
getElementType can be inlined into doProlog with cost=160 (threshold=250) |
doProlog |
|
|
inline |
getElementType inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4578 |
|
|
|
| 4579 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4580 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 4581 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
| 4582 |
|
|
dtd->in_eldecl = XML_TRUE; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4583 |
|
|
handleDefault = XML_FALSE; |
| 4584 |
|
|
|
| 4585 |
|
|
|
| 4586 |
|
|
|
| 4587 |
|
|
case XML_ROLE_CONTENT_ANY: |
| 4588 |
|
|
case XML_ROLE_CONTENT_EMPTY: |
| 4589 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4590 |
|
|
if (elementDeclHandler) { |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
| 4591 |
|
|
XML_Content * content = (XML_Content *) MALLOC(sizeof(XML_Content)); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
doProlog |
| 4592 |
|
|
|
| 4593 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4594 |
|
|
content->quant = XML_CQUANT_NONE; |
| 4595 |
|
|
|
| 4596 |
|
|
content->numchildren = 0; |
| 4597 |
|
|
content->children = NULL; |
| 4598 |
|
|
content->type = ((role == XML_ROLE_CONTENT_ANY) ? |
| 4599 |
|
|
|
| 4600 |
|
|
|
| 4601 |
|
|
|
| 4602 |
|
|
elementDeclHandler(handlerArg, declElementType->name, content); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.ELEMENT_TYPE* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4603 |
|
|
handleDefault = XML_FALSE; |
| 4604 |
|
|
|
| 4605 |
|
|
dtd->in_eldecl = XML_FALSE; |
| 4606 |
|
|
|
| 4607 |
|
|
|
| 4608 |
|
|
|
| 4609 |
|
|
case XML_ROLE_CONTENT_PCDATA: |
| 4610 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4611 |
|
|
dtd->scaffold[dtd->scaffIndex[dtd->scaffLevel - 1]].type |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4612 |
|
|
|
| 4613 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
| 4614 |
|
|
handleDefault = XML_FALSE; |
| 4615 |
|
|
|
| 4616 |
|
|
|
| 4617 |
|
|
|
| 4618 |
|
|
case XML_ROLE_CONTENT_ELEMENT: |
| 4619 |
|
|
|
| 4620 |
|
|
|
| 4621 |
|
|
case XML_ROLE_CONTENT_ELEMENT_OPT: |
| 4622 |
|
|
|
| 4623 |
|
|
|
| 4624 |
|
|
case XML_ROLE_CONTENT_ELEMENT_REP: |
| 4625 |
|
|
|
| 4626 |
|
|
|
| 4627 |
|
|
case XML_ROLE_CONTENT_ELEMENT_PLUS: |
| 4628 |
|
|
|
| 4629 |
|
|
|
| 4630 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4631 |
|
|
|
| 4632 |
|
|
|
| 4633 |
|
|
|
| 4634 |
|
|
const char *nxt = (quant == XML_CQUANT_NONE |
| 4635 |
|
|
|
| 4636 |
|
|
: next - enc->minBytesPerChar); |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4637 |
|
|
int myindex = nextScaffoldPart(parser); |
|
|
inline |
nextScaffoldPart too costly to inline (cost=305, threshold=250) |
doProlog |
|
|
inline |
nextScaffoldPart will not be inlined into doProlog |
doProlog |
| 4638 |
|
|
|
| 4639 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4640 |
|
|
dtd->scaffold[myindex].type = XML_CTYPE_NAME; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated because it is clobbered by call |
doProlog |
| 4641 |
|
|
dtd->scaffold[myindex].quant = quant; |
| 4642 |
|
|
el = getElementType(parser, enc, s, nxt); |
|
|
inline |
getElementType can be inlined into doProlog with cost=-14840 (threshold=250) |
doProlog |
|
|
inline |
getElementType inlined into doProlog |
doProlog |
| 4643 |
|
|
|
| 4644 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4645 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load eliminated by PRE |
doProlog |
| 4646 |
|
|
dtd->scaffold[myindex].name = name; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 4647 |
|
|
|
| 4648 |
|
|
for (; name[nameLen++]; ); |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
| 4649 |
|
|
dtd->contentStringLen += nameLen; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4650 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
| 4651 |
|
|
handleDefault = XML_FALSE; |
| 4652 |
|
|
|
| 4653 |
|
|
|
| 4654 |
|
|
|
| 4655 |
|
|
case XML_ROLE_GROUP_CLOSE: |
| 4656 |
|
|
|
| 4657 |
|
|
|
| 4658 |
|
|
case XML_ROLE_GROUP_CLOSE_OPT: |
| 4659 |
|
|
|
| 4660 |
|
|
|
| 4661 |
|
|
case XML_ROLE_GROUP_CLOSE_REP: |
| 4662 |
|
|
|
| 4663 |
|
|
|
| 4664 |
|
|
case XML_ROLE_GROUP_CLOSE_PLUS: |
| 4665 |
|
|
|
| 4666 |
|
|
|
| 4667 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
| 4668 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
| 4669 |
|
|
handleDefault = XML_FALSE; |
| 4670 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4671 |
|
|
dtd->scaffold[dtd->scaffIndex[dtd->scaffLevel]].quant = quant; |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
| 4672 |
|
|
if (dtd->scaffLevel == 0) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 eliminated in favor of add |
doProlog |
| 4673 |
|
|
|
| 4674 |
|
|
XML_Content *model = build_model(parser); |
|
|
inline |
build_model can be inlined into doProlog with cost=-14895 (threshold=250) |
doProlog |
|
|
inline |
build_model inlined into doProlog |
doProlog |
| 4675 |
|
|
|
| 4676 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4677 |
|
|
|
| 4678 |
|
|
elementDeclHandler(handlerArg, declElementType->name, model); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.ELEMENT_TYPE* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 4679 |
|
|
|
| 4680 |
|
|
dtd->in_eldecl = XML_FALSE; |
| 4681 |
|
|
dtd->contentStringLen = 0; |
|
|
licm |
hosting getelementptr |
doProlog |
| 4682 |
|
|
|
| 4683 |
|
|
|
| 4684 |
|
|
|
| 4685 |
|
|
/* End element declaration stuff */ |
| 4686 |
|
|
|
| 4687 |
|
|
|
| 4688 |
|
|
if (!reportProcessingInstruction(parser, enc, s, next)) |
|
|
inline |
reportProcessingInstruction too costly to inline (cost=635, threshold=625) |
doProlog |
|
|
inline |
reportProcessingInstruction will not be inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4689 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4690 |
|
|
handleDefault = XML_FALSE; |
| 4691 |
|
|
|
| 4692 |
|
|
|
| 4693 |
|
|
if (!reportComment(parser, enc, s, next)) |
|
|
inline |
reportComment too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
reportComment will not be inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4694 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4695 |
|
|
handleDefault = XML_FALSE; |
| 4696 |
|
|
|
| 4697 |
|
|
|
| 4698 |
|
|
|
| 4699 |
|
|
|
| 4700 |
|
|
handleDefault = XML_FALSE; |
| 4701 |
|
|
|
| 4702 |
|
|
|
| 4703 |
|
|
|
| 4704 |
|
|
case XML_ROLE_DOCTYPE_NONE: |
| 4705 |
|
|
if (startDoctypeDeclHandler) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 4706 |
|
|
handleDefault = XML_FALSE; |
| 4707 |
|
|
|
| 4708 |
|
|
case XML_ROLE_ENTITY_NONE: |
| 4709 |
|
|
if (dtd->keepProcessing && entityDeclHandler) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32, i8*, i32, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4710 |
|
|
handleDefault = XML_FALSE; |
| 4711 |
|
|
|
| 4712 |
|
|
case XML_ROLE_NOTATION_NONE: |
| 4713 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by call |
doProlog |
| 4714 |
|
|
handleDefault = XML_FALSE; |
| 4715 |
|
|
|
| 4716 |
|
|
case XML_ROLE_ATTLIST_NONE: |
| 4717 |
|
|
if (dtd->keepProcessing && attlistDeclHandler) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i8*, i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 4718 |
|
|
handleDefault = XML_FALSE; |
| 4719 |
|
|
|
| 4720 |
|
|
case XML_ROLE_ELEMENT_NONE: |
| 4721 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, %struct.XML_cp*)* not eliminated because it is clobbered by call |
doProlog |
| 4722 |
|
|
handleDefault = XML_FALSE; |
| 4723 |
|
|
|
| 4724 |
|
|
} /* end of big switch */ |
| 4725 |
|
|
|
| 4726 |
|
|
if (handleDefault && defaultHandler) |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
doProlog |
| 4727 |
|
|
reportDefault(parser, enc, s, next); |
|
|
inline |
reportDefault can be inlined into doProlog with cost=165 (threshold=250) |
doProlog |
|
|
inline |
reportDefault inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4728 |
|
|
|
| 4729 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
doProlog |
| 4730 |
|
|
|
| 4731 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
| 4732 |
|
|
|
| 4733 |
|
|
|
| 4734 |
|
|
return XML_ERROR_ABORTED; |
| 4735 |
|
|
|
| 4736 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
| 4737 |
|
|
tok = XmlPrologTok(enc, s, end, &next); |
| 4738 |
|
|
|
| 4739 |
|
|
|
| 4740 |
|
|
|
| 4741 |
|
|
|
| 4742 |
|
|
|
| 4743 |
|
|
static enum XML_Error PTRCALL |
| 4744 |
|
|
epilogProcessor(XML_Parser parser, |
| 4745 |
|
|
|
| 4746 |
|
|
|
| 4747 |
|
|
|
| 4748 |
|
|
|
| 4749 |
|
|
processor = epilogProcessor; |
| 4750 |
|
|
|
| 4751 |
|
|
|
| 4752 |
|
|
|
|
|
licm |
hosting bitcast |
epilogProcessor |
| 4753 |
|
|
int tok = XmlPrologTok(encoding, s, end, &next); |
|
|
licm |
hosting getelementptr |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by store |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
epilogProcessor |
| 4754 |
|
|
|
|
|
licm |
hosting bitcast |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
hosting getelementptr |
epilogProcessor |
|
|
licm |
hosting bitcast |
epilogProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
epilogProcessor |
| 4755 |
|
|
|
| 4756 |
|
|
/* report partial linebreak - it might be the last token */ |
| 4757 |
|
|
|
| 4758 |
|
|
|
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
epilogProcessor |
| 4759 |
|
|
reportDefault(parser, encoding, s, next); |
|
|
inline |
reportDefault can be inlined into epilogProcessor with cost=165 (threshold=250) |
epilogProcessor |
|
|
inline |
reportDefault inlined into epilogProcessor |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
epilogProcessor |
| 4760 |
|
|
if (ps_parsing == XML_FINISHED) |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
epilogProcessor |
| 4761 |
|
|
return XML_ERROR_ABORTED; |
| 4762 |
|
|
|
| 4763 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load eliminated by PRE |
epilogProcessor |
| 4764 |
|
|
|
| 4765 |
|
|
|
| 4766 |
|
|
|
| 4767 |
|
|
|
| 4768 |
|
|
|
| 4769 |
|
|
|
|
|
licm |
hosting getelementptr |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by call |
epilogProcessor |
| 4770 |
|
|
reportDefault(parser, encoding, s, next); |
|
|
inline |
reportDefault can be inlined into epilogProcessor with cost=165 (threshold=250) |
epilogProcessor |
|
|
inline |
reportDefault inlined into epilogProcessor |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
epilogProcessor |
| 4771 |
|
|
|
| 4772 |
|
|
|
| 4773 |
|
|
if (!reportProcessingInstruction(parser, encoding, s, next)) |
|
|
inline |
reportProcessingInstruction too costly to inline (cost=635, threshold=625) |
epilogProcessor |
|
|
inline |
reportProcessingInstruction will not be inlined into epilogProcessor |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
epilogProcessor |
| 4774 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4775 |
|
|
|
| 4776 |
|
|
|
| 4777 |
|
|
if (!reportComment(parser, encoding, s, next)) |
|
|
inline |
reportComment too costly to inline (cost=630, threshold=625) |
epilogProcessor |
|
|
inline |
reportComment will not be inlined into epilogProcessor |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
epilogProcessor |
| 4778 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4779 |
|
|
|
| 4780 |
|
|
|
| 4781 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of load |
epilogProcessor |
| 4782 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 4783 |
|
|
|
| 4784 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
epilogProcessor |
| 4785 |
|
|
|
| 4786 |
|
|
|
| 4787 |
|
|
|
| 4788 |
|
|
return XML_ERROR_UNCLOSED_TOKEN; |
| 4789 |
|
|
case XML_TOK_PARTIAL_CHAR: |
| 4790 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
epilogProcessor |
| 4791 |
|
|
|
| 4792 |
|
|
|
| 4793 |
|
|
|
| 4794 |
|
|
return XML_ERROR_PARTIAL_CHAR; |
| 4795 |
|
|
|
| 4796 |
|
|
return XML_ERROR_JUNK_AFTER_DOC_ELEMENT; |
| 4797 |
|
|
|
| 4798 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
epilogProcessor |
| 4799 |
|
|
|
|
|
licm |
hosting getelementptr |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
epilogProcessor |
| 4800 |
|
|
|
| 4801 |
|
|
|
| 4802 |
|
|
|
| 4803 |
|
|
|
| 4804 |
|
|
return XML_ERROR_ABORTED; |
| 4805 |
|
|
|
| 4806 |
|
|
|
| 4807 |
|
|
|
| 4808 |
|
|
|
| 4809 |
|
|
|
| 4810 |
|
|
|
| 4811 |
|
|
processInternalEntity(XML_Parser parser, ENTITY *entity, |
| 4812 |
|
|
|
| 4813 |
|
|
|
| 4814 |
|
|
const char *textStart, *textEnd; |
| 4815 |
|
|
|
| 4816 |
|
|
|
| 4817 |
|
|
OPEN_INTERNAL_ENTITY *openEntity; |
| 4818 |
|
|
|
| 4819 |
|
|
if (freeInternalEntities) { |
| 4820 |
|
|
openEntity = freeInternalEntities; |
| 4821 |
|
|
freeInternalEntities = openEntity->next; |
| 4822 |
|
|
|
| 4823 |
|
|
|
| 4824 |
|
|
openEntity = (OPEN_INTERNAL_ENTITY *)MALLOC(sizeof(OPEN_INTERNAL_ENTITY)); |
| 4825 |
|
|
|
| 4826 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4827 |
|
|
|
| 4828 |
|
|
|
| 4829 |
|
|
|
| 4830 |
|
|
openEntity->next = openInternalEntities; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processInternalEntity |
| 4831 |
|
|
openInternalEntities = openEntity; |
| 4832 |
|
|
openEntity->entity = entity; |
| 4833 |
|
|
openEntity->startTagLevel = tagLevel; |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
processInternalEntity |
| 4834 |
|
|
openEntity->betweenDecl = betweenDecl; |
| 4835 |
|
|
openEntity->internalEventPtr = NULL; |
| 4836 |
|
|
openEntity->internalEventEndPtr = NULL; |
| 4837 |
|
|
textStart = (char *)entity->textPtr; |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processInternalEntity |
| 4838 |
|
|
textEnd = (char *)(entity->textPtr + entity->textLen); |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
processInternalEntity |
| 4839 |
|
|
|
| 4840 |
|
|
|
| 4841 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
processInternalEntity |
| 4842 |
|
|
int tok = XmlPrologTok(internalEncoding, textStart, textEnd, &next); |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
processInternalEntity |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
processInternalEntity |
| 4843 |
|
|
result = doProlog(parser, internalEncoding, textStart, textEnd, tok, |
|
|
inline |
doProlog too costly to inline (cost=630, threshold=625) |
processInternalEntity |
|
|
inline |
doProlog will not be inlined into processInternalEntity |
processInternalEntity |
|
|
inline |
doProlog too costly to inline (cost=640, threshold=625) |
processInternalEntity |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
processInternalEntity |
| 4844 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processInternalEntity |
| 4845 |
|
|
|
| 4846 |
|
|
|
| 4847 |
|
|
|
| 4848 |
|
|
result = doContent(parser, tagLevel, internalEncoding, textStart, |
|
|
inline |
doContent too costly to inline (cost=630, threshold=625) |
processInternalEntity |
|
|
inline |
doContent will not be inlined into processInternalEntity |
processInternalEntity |
| 4849 |
|
|
textEnd, &next, XML_FALSE); |
| 4850 |
|
|
|
| 4851 |
|
|
if (result == XML_ERROR_NONE) { |
| 4852 |
|
|
if (textEnd != next && ps_parsing == XML_SUSPENDED) { |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processInternalEntity |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processInternalEntity |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
processInternalEntity |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
processInternalEntity |
| 4853 |
|
|
entity->processed = (int)(next - textStart); |
| 4854 |
|
|
processor = internalEntityProcessor; |
| 4855 |
|
|
|
| 4856 |
|
|
|
| 4857 |
|
|
entity->open = XML_FALSE; |
| 4858 |
|
|
openInternalEntities = openEntity->next; |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
processInternalEntity |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
processInternalEntity |
| 4859 |
|
|
/* put openEntity back in list of free instances */ |
| 4860 |
|
|
openEntity->next = freeInternalEntities; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processInternalEntity |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processInternalEntity |
| 4861 |
|
|
freeInternalEntities = openEntity; |
| 4862 |
|
|
|
| 4863 |
|
|
|
| 4864 |
|
|
|
| 4865 |
|
|
|
| 4866 |
|
|
|
| 4867 |
|
|
static enum XML_Error PTRCALL |
| 4868 |
|
|
internalEntityProcessor(XML_Parser parser, |
| 4869 |
|
|
|
| 4870 |
|
|
|
| 4871 |
|
|
|
| 4872 |
|
|
|
| 4873 |
|
|
|
| 4874 |
|
|
const char *textStart, *textEnd; |
| 4875 |
|
|
|
| 4876 |
|
|
|
| 4877 |
|
|
OPEN_INTERNAL_ENTITY *openEntity = openInternalEntities; |
| 4878 |
|
|
|
| 4879 |
|
|
return XML_ERROR_UNEXPECTED_STATE; |
| 4880 |
|
|
|
| 4881 |
|
|
entity = openEntity->entity; |
| 4882 |
|
|
textStart = ((char *)entity->textPtr) + entity->processed; |
| 4883 |
|
|
textEnd = (char *)(entity->textPtr + entity->textLen); |
| 4884 |
|
|
|
| 4885 |
|
|
|
| 4886 |
|
|
|
| 4887 |
|
|
int tok = XmlPrologTok(internalEncoding, textStart, textEnd, &next); |
| 4888 |
|
|
result = doProlog(parser, internalEncoding, textStart, textEnd, tok, |
|
|
inline |
doProlog too costly to inline (cost=640, threshold=625) |
internalEntityProcessor |
|
|
inline |
doProlog will not be inlined into internalEntityProcessor |
internalEntityProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
internalEntityProcessor |
| 4889 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
internalEntityProcessor |
| 4890 |
|
|
|
| 4891 |
|
|
|
| 4892 |
|
|
|
| 4893 |
|
|
result = doContent(parser, openEntity->startTagLevel, internalEncoding, |
|
|
inline |
doContent too costly to inline (cost=650, threshold=625) |
internalEntityProcessor |
|
|
inline |
doContent will not be inlined into internalEntityProcessor |
internalEntityProcessor |
| 4894 |
|
|
textStart, textEnd, &next, XML_FALSE); |
| 4895 |
|
|
|
| 4896 |
|
|
if (result != XML_ERROR_NONE) |
| 4897 |
|
|
|
| 4898 |
|
|
else if (textEnd != next && ps_parsing == XML_SUSPENDED) { |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
internalEntityProcessor |
| 4899 |
|
|
entity->processed = (int)(next - (char *)entity->textPtr); |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
internalEntityProcessor |
| 4900 |
|
|
|
| 4901 |
|
|
|
| 4902 |
|
|
|
| 4903 |
|
|
entity->open = XML_FALSE; |
| 4904 |
|
|
openInternalEntities = openEntity->next; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
internalEntityProcessor |
| 4905 |
|
|
/* put openEntity back in list of free instances */ |
| 4906 |
|
|
openEntity->next = freeInternalEntities; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
internalEntityProcessor |
| 4907 |
|
|
freeInternalEntities = openEntity; |
| 4908 |
|
|
|
| 4909 |
|
|
|
| 4910 |
|
|
|
| 4911 |
|
|
|
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
internalEntityProcessor |
| 4912 |
|
|
|
| 4913 |
|
|
processor = prologProcessor; |
| 4914 |
|
|
tok = XmlPrologTok(encoding, s, end, &next); |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
internalEntityProcessor |
| 4915 |
|
|
return doProlog(parser, encoding, s, end, tok, next, nextPtr, |
|
|
inline |
doProlog too costly to inline (cost=665, threshold=625) |
internalEntityProcessor |
|
|
inline |
doProlog will not be inlined into internalEntityProcessor |
internalEntityProcessor |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
internalEntityProcessor |
| 4916 |
|
|
(XML_Bool)!ps_finalBuffer); |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
internalEntityProcessor |
| 4917 |
|
|
|
| 4918 |
|
|
|
| 4919 |
|
|
|
| 4920 |
|
|
|
| 4921 |
|
|
processor = contentProcessor; |
| 4922 |
|
|
/* see externalEntityContentProcessor vs contentProcessor */ |
| 4923 |
|
|
return doContent(parser, parentParser ? 1 : 0, encoding, s, end, |
|
|
inline |
doContent too costly to inline (cost=630, threshold=625) |
internalEntityProcessor |
|
|
inline |
doContent will not be inlined into internalEntityProcessor |
internalEntityProcessor |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by call |
internalEntityProcessor |
| 4924 |
|
|
nextPtr, (XML_Bool)!ps_finalBuffer); |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
internalEntityProcessor |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
internalEntityProcessor |
| 4925 |
|
|
|
| 4926 |
|
|
|
| 4927 |
|
|
|
| 4928 |
|
|
static enum XML_Error PTRCALL |
| 4929 |
|
|
errorProcessor(XML_Parser parser, |
| 4930 |
|
|
|
| 4931 |
|
|
|
| 4932 |
|
|
|
| 4933 |
|
|
|
| 4934 |
|
|
|
| 4935 |
|
|
|
| 4936 |
|
|
|
| 4937 |
|
|
|
| 4938 |
|
|
storeAttributeValue(XML_Parser parser, const ENCODING *enc, XML_Bool isCdata, |
| 4939 |
|
|
const char *ptr, const char *end, |
| 4940 |
|
|
|
| 4941 |
|
|
|
| 4942 |
|
|
enum XML_Error result = appendAttributeValue(parser, enc, isCdata, ptr, |
|
|
inline |
appendAttributeValue too costly to inline (cost=630, threshold=625) |
storeAttributeValue |
|
|
inline |
appendAttributeValue will not be inlined into storeAttributeValue |
storeAttributeValue |
|
|
inline |
appendAttributeValue too costly to inline (cost=630, threshold=625) |
storeAtts |
|
|
inline |
appendAttributeValue will not be inlined into storeAtts |
storeAtts |
|
|
inline |
appendAttributeValue too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
appendAttributeValue will not be inlined into doProlog |
doProlog |
| 4943 |
|
|
|
| 4944 |
|
|
|
| 4945 |
|
|
|
| 4946 |
|
|
if (!isCdata && poolLength(pool) && poolLastChar(pool) == 0x20) |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAttributeValue |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAttributeValue |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
hosting bitcast |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeAtts |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 4947 |
|
|
|
| 4948 |
|
|
if (!poolAppendChar(pool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAttributeValue |
|
|
inline |
poolGrow will not be inlined into storeAttributeValue |
storeAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAttributeValue |
|
|
gvn |
load eliminated by PRE |
storeAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAttributeValue |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAtts |
|
|
inline |
poolGrow will not be inlined into storeAtts |
storeAtts |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 4949 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4950 |
|
|
|
| 4951 |
|
|
|
| 4952 |
|
|
|
| 4953 |
|
|
|
| 4954 |
|
|
appendAttributeValue(XML_Parser parser, const ENCODING *enc, XML_Bool isCdata, |
| 4955 |
|
|
const char *ptr, const char *end, |
| 4956 |
|
|
|
| 4957 |
|
|
|
| 4958 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
| 4959 |
|
|
|
| 4960 |
|
|
|
|
|
licm |
hosting bitcast |
appendAttributeValue |
| 4961 |
|
|
int tok = XmlAttributeValueTok(enc, ptr, end, &next); |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
appendAttributeValue |
| 4962 |
|
|
|
| 4963 |
|
|
|
| 4964 |
|
|
|
| 4965 |
|
|
|
| 4966 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
appendAttributeValue |
| 4967 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
appendAttributeValue |
| 4968 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 4969 |
|
|
|
| 4970 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
appendAttributeValue |
| 4971 |
|
|
|
| 4972 |
|
|
return XML_ERROR_INVALID_TOKEN; |
| 4973 |
|
|
|
| 4974 |
|
|
|
| 4975 |
|
|
XML_Char buf[XML_ENCODE_MAX]; |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
| 4976 |
|
|
|
| 4977 |
|
|
int n = XmlCharRefNumber(enc, ptr); |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by call |
appendAttributeValue |
| 4978 |
|
|
|
| 4979 |
|
|
|
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
appendAttributeValue |
| 4980 |
|
|
|
|
|
licm |
hosting getelementptr |
appendAttributeValue |
| 4981 |
|
|
return XML_ERROR_BAD_CHAR_REF; |
| 4982 |
|
|
|
| 4983 |
|
|
|
|
|
licm |
hosting icmp |
appendAttributeValue |
| 4984 |
|
|
|
| 4985 |
|
|
&& (poolLength(pool) == 0 || poolLastChar(pool) == 0x20)) |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
licm |
hosting bitcast |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
appendAttributeValue |
| 4986 |
|
|
|
| 4987 |
|
|
n = XmlEncode(n, (ICHAR *)buf); |
|
|
inline |
PyExpat_XmlUtf8Encode will not be inlined into appendAttributeValue because its definition is unavailable |
appendAttributeValue |
| 4988 |
|
|
|
| 4989 |
|
|
|
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
appendAttributeValue |
| 4990 |
|
|
|
|
|
licm |
hosting getelementptr |
appendAttributeValue |
| 4991 |
|
|
return XML_ERROR_BAD_CHAR_REF; |
| 4992 |
|
|
|
| 4993 |
|
|
for (i = 0; i < n; i++) { |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
appendAttributeValue |
|
|
loop-vectorize |
loop not vectorized |
appendAttributeValue |
| 4994 |
|
|
if (!poolAppendChar(pool, buf[i])) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
appendAttributeValue |
|
|
inline |
poolGrow will not be inlined into appendAttributeValue |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load eliminated by PRE |
appendAttributeValue |
| 4995 |
|
|
return XML_ERROR_NO_MEMORY; |
| 4996 |
|
|
|
| 4997 |
|
|
|
| 4998 |
|
|
|
| 4999 |
|
|
|
| 5000 |
|
|
if (!poolAppend(pool, enc, ptr, next)) |
|
|
inline |
poolAppend can be inlined into appendAttributeValue with cost=125 (threshold=250) |
appendAttributeValue |
|
|
inline |
poolAppend inlined into appendAttributeValue |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
| 5001 |
|
|
return XML_ERROR_NO_MEMORY; |
| 5002 |
|
|
|
| 5003 |
|
|
case XML_TOK_TRAILING_CR: |
| 5004 |
|
|
next = ptr + enc->minBytesPerChar; |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
appendAttributeValue |
| 5005 |
|
|
|
| 5006 |
|
|
case XML_TOK_ATTRIBUTE_VALUE_S: |
| 5007 |
|
|
case XML_TOK_DATA_NEWLINE: |
| 5008 |
|
|
if (!isCdata && (poolLength(pool) == 0 || poolLastChar(pool) == 0x20)) |
|
|
licm |
hosting icmp |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
licm |
hosting bitcast |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
appendAttributeValue |
| 5009 |
|
|
|
| 5010 |
|
|
if (!poolAppendChar(pool, 0x20)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
appendAttributeValue |
|
|
inline |
poolGrow will not be inlined into appendAttributeValue |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load eliminated by PRE |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
| 5011 |
|
|
return XML_ERROR_NO_MEMORY; |
| 5012 |
|
|
|
| 5013 |
|
|
|
| 5014 |
|
|
|
| 5015 |
|
|
|
| 5016 |
|
|
|
| 5017 |
|
|
|
| 5018 |
|
|
XML_Char ch = (XML_Char) XmlPredefinedEntityName(enc, |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
| 5019 |
|
|
ptr + enc->minBytesPerChar, |
| 5020 |
|
|
next - enc->minBytesPerChar); |
| 5021 |
|
|
|
| 5022 |
|
|
if (!poolAppendChar(pool, ch)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
appendAttributeValue |
|
|
inline |
poolGrow will not be inlined into appendAttributeValue |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load eliminated by PRE |
appendAttributeValue |
| 5023 |
|
|
return XML_ERROR_NO_MEMORY; |
| 5024 |
|
|
|
| 5025 |
|
|
|
| 5026 |
|
|
name = poolStoreString(&temp2Pool, enc, |
|
|
inline |
poolStoreString can be inlined into appendAttributeValue with cost=220 (threshold=250) |
appendAttributeValue |
|
|
inline |
poolStoreString inlined into appendAttributeValue |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
| 5027 |
|
|
ptr + enc->minBytesPerChar, |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
appendAttributeValue |
| 5028 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
appendAttributeValue |
| 5029 |
|
|
|
| 5030 |
|
|
return XML_ERROR_NO_MEMORY; |
| 5031 |
|
|
entity = (ENTITY *)lookup(parser, &dtd->generalEntities, name, 0); |
|
|
inline |
lookup can be inlined into appendAttributeValue with cost=205 (threshold=250) |
appendAttributeValue |
|
|
inline |
lookup inlined into appendAttributeValue |
appendAttributeValue |
| 5032 |
|
|
|
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
hosting bitcast |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
appendAttributeValue |
| 5033 |
|
|
/* First, determine if a check for an existing declaration is needed; |
| 5034 |
|
|
if yes, check that the entity exists, and that it is internal. |
| 5035 |
|
|
|
| 5036 |
|
|
if (pool == &dtd->pool) /* are we called from prolog? */ |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
hosting icmp |
appendAttributeValue |
| 5037 |
|
|
|
| 5038 |
|
|
|
| 5039 |
|
|
prologState.documentEntity && |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
appendAttributeValue |
| 5040 |
|
|
|
| 5041 |
|
|
|
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
appendAttributeValue |
| 5042 |
|
|
|
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
appendAttributeValue |
| 5043 |
|
|
: !dtd->hasParamEntityRefs); |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
appendAttributeValue |
| 5044 |
|
|
else /* if (pool == &tempPool): we are called from content */ |
| 5045 |
|
|
checkEntityDecl = !dtd->hasParamEntityRefs || dtd->standalone; |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
appendAttributeValue |
| 5046 |
|
|
|
| 5047 |
|
|
|
| 5048 |
|
|
return XML_ERROR_UNDEFINED_ENTITY; |
| 5049 |
|
|
else if (!entity->is_internal) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
appendAttributeValue |
| 5050 |
|
|
return XML_ERROR_ENTITY_DECLARED_IN_PE; |
| 5051 |
|
|
|
| 5052 |
|
|
|
| 5053 |
|
|
/* Cannot report skipped entity here - see comments on |
| 5054 |
|
|
|
| 5055 |
|
|
if (skippedEntityHandler) |
| 5056 |
|
|
skippedEntityHandler(handlerArg, name, 0); |
| 5057 |
|
|
|
| 5058 |
|
|
/* Cannot call the default handler because this would be |
| 5059 |
|
|
out of sync with the call to the startElementHandler. |
| 5060 |
|
|
if ((pool == &tempPool) && defaultHandler) |
| 5061 |
|
|
reportDefault(parser, enc, ptr, next); |
| 5062 |
|
|
|
| 5063 |
|
|
|
| 5064 |
|
|
|
| 5065 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
appendAttributeValue |
| 5066 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by store |
appendAttributeValue |
| 5067 |
|
|
|
| 5068 |
|
|
return XML_ERROR_RECURSIVE_ENTITY_REF; |
| 5069 |
|
|
|
| 5070 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
| 5071 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by store |
appendAttributeValue |
| 5072 |
|
|
|
| 5073 |
|
|
return XML_ERROR_BINARY_ENTITY_REF; |
| 5074 |
|
|
|
| 5075 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
| 5076 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by store |
appendAttributeValue |
| 5077 |
|
|
|
| 5078 |
|
|
return XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF; |
| 5079 |
|
|
|
| 5080 |
|
|
|
| 5081 |
|
|
|
| 5082 |
|
|
const XML_Char *textEnd = entity->textPtr + entity->textLen; |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
appendAttributeValue |
| 5083 |
|
|
|
| 5084 |
|
|
result = appendAttributeValue(parser, internalEncoding, isCdata, |
|
|
inline |
appendAttributeValue too costly to inline (cost=660, threshold=625) |
appendAttributeValue |
|
|
inline |
appendAttributeValue will not be inlined into appendAttributeValue |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by store |
appendAttributeValue |
| 5085 |
|
|
|
| 5086 |
|
|
|
| 5087 |
|
|
entity->open = XML_FALSE; |
| 5088 |
|
|
|
| 5089 |
|
|
|
| 5090 |
|
|
|
| 5091 |
|
|
|
| 5092 |
|
|
|
| 5093 |
|
|
|
| 5094 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
appendAttributeValue |
| 5095 |
|
|
|
| 5096 |
|
|
return XML_ERROR_UNEXPECTED_STATE; |
| 5097 |
|
|
|
| 5098 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
appendAttributeValue |
| 5099 |
|
|
|
| 5100 |
|
|
|
| 5101 |
|
|
|
| 5102 |
|
|
|
| 5103 |
|
|
|
| 5104 |
|
|
storeEntityValue(XML_Parser parser, |
| 5105 |
|
|
|
| 5106 |
|
|
const char *entityTextPtr, |
| 5107 |
|
|
const char *entityTextEnd) |
| 5108 |
|
|
|
| 5109 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
| 5110 |
|
|
STRING_POOL *pool = &(dtd->entityValuePool); |
| 5111 |
|
|
enum XML_Error result = XML_ERROR_NONE; |
| 5112 |
|
|
|
| 5113 |
|
|
int oldInEntityValue = prologState.inEntityValue; |
| 5114 |
|
|
prologState.inEntityValue = 1; |
| 5115 |
|
|
|
| 5116 |
|
|
/* never return Null for the value argument in EntityDeclHandler, |
| 5117 |
|
|
since this would indicate an external entity; therefore we |
| 5118 |
|
|
have to make sure that entityValuePool.start is not null */ |
| 5119 |
|
|
|
| 5120 |
|
|
|
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeEntityValue |
|
|
inline |
poolGrow will not be inlined into storeEntityValue |
storeEntityValue |
| 5121 |
|
|
return XML_ERROR_NO_MEMORY; |
| 5122 |
|
|
|
| 5123 |
|
|
|
| 5124 |
|
|
|
| 5125 |
|
|
|
|
|
licm |
hosting bitcast |
storeEntityValue |
| 5126 |
|
|
int tok = XmlEntityValueTok(enc, entityTextPtr, entityTextEnd, &next); |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*, i8*, i8**)* not eliminated because it is clobbered by call |
storeEntityValue |
| 5127 |
|
|
|
| 5128 |
|
|
case XML_TOK_PARAM_ENTITY_REF: |
| 5129 |
|
|
|
| 5130 |
|
|
if (isParamEntity || enc != encoding) { |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
storeEntityValue |
| 5131 |
|
|
|
| 5132 |
|
|
|
| 5133 |
|
|
name = poolStoreString(&tempPool, enc, |
|
|
inline |
poolStoreString can be inlined into storeEntityValue with cost=220 (threshold=250) |
storeEntityValue |
|
|
inline |
poolStoreString inlined into storeEntityValue |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
| 5134 |
|
|
entityTextPtr + enc->minBytesPerChar, |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
storeEntityValue |
| 5135 |
|
|
next - enc->minBytesPerChar); |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
| 5136 |
|
|
|
| 5137 |
|
|
result = XML_ERROR_NO_MEMORY; |
| 5138 |
|
|
|
| 5139 |
|
|
|
| 5140 |
|
|
entity = (ENTITY *)lookup(parser, &dtd->paramEntities, name, 0); |
|
|
inline |
lookup can be inlined into storeEntityValue with cost=205 (threshold=250) |
storeEntityValue |
|
|
inline |
lookup inlined into storeEntityValue |
storeEntityValue |
| 5141 |
|
|
|
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
hosting bitcast |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
storeEntityValue |
| 5142 |
|
|
|
| 5143 |
|
|
/* not a well-formedness error - see XML 1.0: WFC Entity Declared */ |
| 5144 |
|
|
/* cannot report skipped entity here - see comments on |
| 5145 |
|
|
|
| 5146 |
|
|
if (skippedEntityHandler) |
| 5147 |
|
|
skippedEntityHandler(handlerArg, name, 0); |
| 5148 |
|
|
|
| 5149 |
|
|
dtd->keepProcessing = dtd->standalone; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeEntityValue |
| 5150 |
|
|
|
| 5151 |
|
|
|
| 5152 |
|
|
|
| 5153 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by store |
storeEntityValue |
| 5154 |
|
|
eventPtr = entityTextPtr; |
| 5155 |
|
|
result = XML_ERROR_RECURSIVE_ENTITY_REF; |
| 5156 |
|
|
|
| 5157 |
|
|
|
| 5158 |
|
|
|
| 5159 |
|
|
if (externalEntityRefHandler) { |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.XML_ParserStruct*, i8*, i8*, i8*, i8*)* not eliminated because it is clobbered by store |
storeEntityValue |
| 5160 |
|
|
dtd->paramEntityRead = XML_FALSE; |
|
|
licm |
hosting getelementptr |
storeEntityValue |
| 5161 |
|
|
|
| 5162 |
|
|
if (!externalEntityRefHandler(externalEntityRefHandlerArg, |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type %struct.XML_ParserStruct* not eliminated because it is clobbered by store |
storeEntityValue |
| 5163 |
|
|
|
| 5164 |
|
|
|
| 5165 |
|
|
|
| 5166 |
|
|
|
| 5167 |
|
|
entity->open = XML_FALSE; |
| 5168 |
|
|
result = XML_ERROR_EXTERNAL_ENTITY_HANDLING; |
| 5169 |
|
|
|
| 5170 |
|
|
|
| 5171 |
|
|
entity->open = XML_FALSE; |
| 5172 |
|
|
if (!dtd->paramEntityRead) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8 not eliminated in favor of store because it is clobbered by call |
storeEntityValue |
| 5173 |
|
|
dtd->keepProcessing = dtd->standalone; |
| 5174 |
|
|
|
| 5175 |
|
|
|
| 5176 |
|
|
dtd->keepProcessing = dtd->standalone; |
| 5177 |
|
|
|
| 5178 |
|
|
|
| 5179 |
|
|
|
| 5180 |
|
|
result = storeEntityValue(parser, |
|
|
inline |
storeEntityValue too costly to inline (cost=650, threshold=625) |
storeEntityValue |
|
|
inline |
storeEntityValue will not be inlined into storeEntityValue |
storeEntityValue |
| 5181 |
|
|
|
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by store |
storeEntityValue |
| 5182 |
|
|
|
| 5183 |
|
|
|
| 5184 |
|
|
|
| 5185 |
|
|
entity->open = XML_FALSE; |
| 5186 |
|
|
|
| 5187 |
|
|
|
| 5188 |
|
|
|
| 5189 |
|
|
|
| 5190 |
|
|
|
| 5191 |
|
|
|
| 5192 |
|
|
/* In the internal subset, PE references are not legal |
| 5193 |
|
|
within markup declarations, e.g entity values in this case. */ |
| 5194 |
|
|
eventPtr = entityTextPtr; |
| 5195 |
|
|
result = XML_ERROR_PARAM_ENTITY_REF; |
| 5196 |
|
|
|
| 5197 |
|
|
|
| 5198 |
|
|
|
| 5199 |
|
|
|
| 5200 |
|
|
|
| 5201 |
|
|
|
| 5202 |
|
|
if (!poolAppend(pool, enc, entityTextPtr, next)) { |
|
|
inline |
poolAppend can be inlined into storeEntityValue with cost=125 (threshold=250) |
storeEntityValue |
|
|
inline |
poolAppend inlined into storeEntityValue |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
| 5203 |
|
|
result = XML_ERROR_NO_MEMORY; |
| 5204 |
|
|
|
| 5205 |
|
|
|
| 5206 |
|
|
|
| 5207 |
|
|
case XML_TOK_TRAILING_CR: |
| 5208 |
|
|
next = entityTextPtr + enc->minBytesPerChar; |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
storeEntityValue |
| 5209 |
|
|
|
| 5210 |
|
|
case XML_TOK_DATA_NEWLINE: |
| 5211 |
|
|
if (pool->end == pool->ptr && !poolGrow(pool)) { |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeEntityValue |
|
|
inline |
poolGrow will not be inlined into storeEntityValue |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
| 5212 |
|
|
result = XML_ERROR_NO_MEMORY; |
| 5213 |
|
|
|
| 5214 |
|
|
|
| 5215 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load eliminated by PRE |
storeEntityValue |
| 5216 |
|
|
|
| 5217 |
|
|
|
| 5218 |
|
|
|
| 5219 |
|
|
XML_Char buf[XML_ENCODE_MAX]; |
|
|
licm |
hosting getelementptr |
storeEntityValue |
| 5220 |
|
|
|
| 5221 |
|
|
int n = XmlCharRefNumber(enc, entityTextPtr); |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i32 (%struct.encoding*, i8*)* not eliminated because it is clobbered by call |
storeEntityValue |
| 5222 |
|
|
|
| 5223 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
storeEntityValue |
| 5224 |
|
|
eventPtr = entityTextPtr; |
| 5225 |
|
|
result = XML_ERROR_BAD_CHAR_REF; |
| 5226 |
|
|
|
| 5227 |
|
|
|
| 5228 |
|
|
n = XmlEncode(n, (ICHAR *)buf); |
|
|
inline |
PyExpat_XmlUtf8Encode will not be inlined into storeEntityValue because its definition is unavailable |
storeEntityValue |
| 5229 |
|
|
|
| 5230 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
storeEntityValue |
| 5231 |
|
|
eventPtr = entityTextPtr; |
| 5232 |
|
|
result = XML_ERROR_BAD_CHAR_REF; |
| 5233 |
|
|
|
| 5234 |
|
|
|
| 5235 |
|
|
for (i = 0; i < n; i++) { |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeEntityValue |
|
|
loop-vectorize |
loop not vectorized |
storeEntityValue |
| 5236 |
|
|
if (pool->end == pool->ptr && !poolGrow(pool)) { |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeEntityValue |
|
|
inline |
poolGrow will not be inlined into storeEntityValue |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
| 5237 |
|
|
result = XML_ERROR_NO_MEMORY; |
| 5238 |
|
|
|
| 5239 |
|
|
|
| 5240 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load eliminated by PRE |
storeEntityValue |
| 5241 |
|
|
|
| 5242 |
|
|
|
| 5243 |
|
|
|
| 5244 |
|
|
|
| 5245 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
storeEntityValue |
| 5246 |
|
|
eventPtr = entityTextPtr; |
| 5247 |
|
|
result = XML_ERROR_INVALID_TOKEN; |
| 5248 |
|
|
|
| 5249 |
|
|
|
| 5250 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
storeEntityValue |
| 5251 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
storeEntityValue |
| 5252 |
|
|
result = XML_ERROR_INVALID_TOKEN; |
| 5253 |
|
|
|
| 5254 |
|
|
|
| 5255 |
|
|
|
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by call |
storeEntityValue |
| 5256 |
|
|
eventPtr = entityTextPtr; |
| 5257 |
|
|
result = XML_ERROR_UNEXPECTED_STATE; |
| 5258 |
|
|
|
| 5259 |
|
|
|
| 5260 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeEntityValue |
| 5261 |
|
|
|
| 5262 |
|
|
|
| 5263 |
|
|
|
| 5264 |
|
|
prologState.inEntityValue = oldInEntityValue; |
| 5265 |
|
|
|
| 5266 |
|
|
|
| 5267 |
|
|
|
| 5268 |
|
|
|
| 5269 |
|
|
|
| 5270 |
|
|
normalizeLines(XML_Char *s) |
| 5271 |
|
|
|
| 5272 |
|
|
|
| 5273 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
reportComment |
|
|
loop-vectorize |
loop not vectorized |
reportComment |
| 5274 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
reportComment |
| 5275 |
|
|
|
| 5276 |
|
|
|
| 5277 |
|
|
|
| 5278 |
|
|
|
| 5279 |
|
|
|
| 5280 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: control flow cannot be substituted for a select |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized: control flow cannot be substituted for a select |
reportComment |
|
|
loop-vectorize |
loop not vectorized |
reportComment |
| 5281 |
|
|
|
|
|
gvn |
load of type i8 eliminated in favor of phi |
normalizeLines |
| 5282 |
|
|
|
| 5283 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
normalizeLines |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
reportComment |
| 5284 |
|
|
|
| 5285 |
|
|
|
| 5286 |
|
|
|
| 5287 |
|
|
|
| 5288 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
normalizeLines |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
normalizeLines |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
reportComment |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
reportComment |
| 5289 |
|
|
|
| 5290 |
|
|
|
| 5291 |
|
|
|
| 5292 |
|
|
|
| 5293 |
|
|
reportProcessingInstruction(XML_Parser parser, const ENCODING *enc, |
| 5294 |
|
|
const char *start, const char *end) |
| 5295 |
|
|
|
| 5296 |
|
|
|
| 5297 |
|
|
|
| 5298 |
|
|
|
| 5299 |
|
|
if (!processingInstructionHandler) { |
| 5300 |
|
|
|
| 5301 |
|
|
reportDefault(parser, enc, start, end); |
|
|
inline |
reportDefault can be inlined into reportProcessingInstruction with cost=165 (threshold=250) |
reportProcessingInstruction |
|
|
inline |
reportDefault inlined into reportProcessingInstruction |
reportProcessingInstruction |
| 5302 |
|
|
|
| 5303 |
|
|
|
| 5304 |
|
|
start += enc->minBytesPerChar * 2; |
| 5305 |
|
|
tem = start + XmlNameLength(enc, start); |
| 5306 |
|
|
target = poolStoreString(&tempPool, enc, start, tem); |
|
|
inline |
poolStoreString can be inlined into reportProcessingInstruction with cost=220 (threshold=250) |
reportProcessingInstruction |
|
|
inline |
poolStoreString inlined into reportProcessingInstruction |
reportProcessingInstruction |
| 5307 |
|
|
|
| 5308 |
|
|
|
| 5309 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
reportProcessingInstruction |
| 5310 |
|
|
data = poolStoreString(&tempPool, enc, |
|
|
inline |
poolStoreString can be inlined into reportProcessingInstruction with cost=220 (threshold=250) |
reportProcessingInstruction |
|
|
inline |
poolStoreString inlined into reportProcessingInstruction |
reportProcessingInstruction |
| 5311 |
|
|
|
|
|
gvn |
load of type i8* (%struct.encoding*, i8*)* not eliminated because it is clobbered by store |
reportProcessingInstruction |
| 5312 |
|
|
end - enc->minBytesPerChar*2); |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
reportProcessingInstruction |
| 5313 |
|
|
|
| 5314 |
|
|
|
| 5315 |
|
|
|
|
|
inline |
normalizeLines can be inlined into reportProcessingInstruction with cost=40 (threshold=250) |
reportProcessingInstruction |
|
|
inline |
normalizeLines inlined into reportProcessingInstruction |
reportProcessingInstruction |
| 5316 |
|
|
processingInstructionHandler(handlerArg, target, data); |
|
|
gvn |
load of type void (i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type void (i8*, i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportProcessingInstruction |
| 5317 |
|
|
|
|
|
inline |
poolClear can be inlined into reportProcessingInstruction with cost=30 (threshold=250) |
reportProcessingInstruction |
|
|
inline |
poolClear inlined into reportProcessingInstruction |
reportProcessingInstruction |
| 5318 |
|
|
|
| 5319 |
|
|
|
| 5320 |
|
|
|
| 5321 |
|
|
|
| 5322 |
|
|
reportComment(XML_Parser parser, const ENCODING *enc, |
| 5323 |
|
|
const char *start, const char *end) |
| 5324 |
|
|
|
| 5325 |
|
|
|
| 5326 |
|
|
|
| 5327 |
|
|
|
| 5328 |
|
|
reportDefault(parser, enc, start, end); |
|
|
inline |
Not inlining. Cost of inlining reportDefault increases the cost of inlining reportComment in other contexts |
reportComment |
|
|
inline |
reportDefault will not be inlined into reportComment |
reportComment |
|
|
inline |
reportDefault can be inlined into reportComment with cost=165 (threshold=250) |
reportComment |
|
|
inline |
reportDefault inlined into reportComment |
reportComment |
| 5329 |
|
|
|
| 5330 |
|
|
|
| 5331 |
|
|
data = poolStoreString(&tempPool, |
|
|
inline |
Not inlining. Cost of inlining poolStoreString increases the cost of inlining reportComment in other contexts |
reportComment |
|
|
inline |
poolStoreString will not be inlined into reportComment |
reportComment |
|
|
inline |
poolStoreString can be inlined into reportComment with cost=220 (threshold=250) |
reportComment |
|
|
inline |
poolStoreString inlined into reportComment |
reportComment |
| 5332 |
|
|
|
| 5333 |
|
|
start + enc->minBytesPerChar * 4, |
| 5334 |
|
|
end - enc->minBytesPerChar * 3); |
| 5335 |
|
|
|
| 5336 |
|
|
|
| 5337 |
|
|
|
|
|
inline |
normalizeLines can be inlined into reportComment with cost=-14960 (threshold=250) |
reportComment |
|
|
inline |
normalizeLines inlined into reportComment |
reportComment |
| 5338 |
|
|
commentHandler(handlerArg, data); |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
reportComment |
|
|
gvn |
load of type void (i8*, i8*)* not eliminated in favor of load because it is clobbered by store |
reportComment |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportComment |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportComment |
| 5339 |
|
|
|
|
|
inline |
poolClear can be inlined into reportComment with cost=30 (threshold=250) |
reportComment |
|
|
inline |
poolClear inlined into reportComment |
reportComment |
| 5340 |
|
|
|
| 5341 |
|
|
|
| 5342 |
|
|
|
| 5343 |
|
|
|
| 5344 |
|
|
reportDefault(XML_Parser parser, const ENCODING *enc, |
|
|
licm |
hosting bitcast |
epilogProcessor |
|
|
licm |
hosting bitcast |
doCdataSection |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
hosting bitcast |
doContent |
| 5345 |
|
|
const char *s, const char *end) |
| 5346 |
|
|
|
| 5347 |
|
|
if (MUST_CONVERT(enc, s)) { |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
ignoreSectionProcessor |
| 5348 |
|
|
|
| 5349 |
|
|
|
| 5350 |
|
|
|
|
|
gvn |
load of type %struct.encoding* eliminated in favor of load |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* eliminated in favor of load |
epilogProcessor |
|
|
gvn |
load of type %struct.encoding* eliminated in favor of load |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.encoding* eliminated in favor of load |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type %struct.encoding* not eliminated in favor of load because it is clobbered by call |
ignoreSectionProcessor |
| 5351 |
|
|
|
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
| 5352 |
|
|
eventEndPP = &eventEndPtr; |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
| 5353 |
|
|
|
| 5354 |
|
|
|
| 5355 |
|
|
eventPP = &(openInternalEntities->internalEventPtr); |
|
|
licm |
hosting getelementptr |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doCdataSection |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.open_internal_entity* eliminated in favor of load |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type %struct.open_internal_entity* not eliminated because it is clobbered by call |
ignoreSectionProcessor |
| 5356 |
|
|
eventEndPP = &(openInternalEntities->internalEventEndPtr); |
| 5357 |
|
|
|
| 5358 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_DefaultCurrent |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_DefaultCurrent |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
processXmlDecl |
|
|
loop-vectorize |
loop not vectorized |
processXmlDecl |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
ignoreSectionProcessor |
|
|
loop-vectorize |
loop not vectorized |
ignoreSectionProcessor |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
reportComment |
|
|
loop-vectorize |
loop not vectorized |
reportComment |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
epilogProcessor |
|
|
loop-vectorize |
loop not vectorized |
epilogProcessor |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doCdataSection |
|
|
loop-vectorize |
loop not vectorized |
doCdataSection |
| 5359 |
|
|
ICHAR *dataPtr = (ICHAR *)dataBuf; |
|
|
licm |
hosting bitcast |
reportDefault |
|
|
licm |
hosting getelementptr |
reportDefault |
|
|
licm |
hosting bitcast |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
licm |
hosting bitcast |
reportDefault |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
ignoreSectionProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
ignoreSectionProcessor |
| 5360 |
|
|
XmlConvert(enc, &s, end, &dataPtr, (ICHAR *)dataBufEnd); |
|
|
licm |
hosting getelementptr |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
reportDefault |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
reportComment |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
ignoreSectionProcessor |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
ignoreSectionProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
ignoreSectionProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
ignoreSectionProcessor |
| 5361 |
|
|
|
|
|
licm |
hosting bitcast |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
licm |
hosting bitcast |
reportDefault |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
ignoreSectionProcessor |
| 5362 |
|
|
defaultHandler(handlerArg, dataBuf, (int)(dataPtr - (ICHAR *)dataBuf)); |
|
|
licm |
hosting getelementptr |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
licm |
hosting getelementptr |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
reportDefault |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportDefault |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportDefault |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
reportComment |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportComment |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
reportComment |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
gvn |
load of type void (i8*, i8*, i32)* not eliminated in favor of load because it is clobbered by store |
ignoreSectionProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
ignoreSectionProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
ignoreSectionProcessor |
|
|
gvn |
load of type i64 not eliminated in favor of store because it is clobbered by call |
ignoreSectionProcessor |
| 5363 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
licm |
hosting bitcast |
reportDefault |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
ignoreSectionProcessor |
| 5364 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportDefault |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
reportDefault |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type i8* eliminated in favor of inttoptr |
PyExpat_XML_DefaultCurrent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
ignoreSectionProcessor |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by store |
ignoreSectionProcessor |
| 5365 |
|
|
|
| 5366 |
|
|
|
| 5367 |
|
|
defaultHandler(handlerArg, (XML_Char *)s, (int)((XML_Char *)end - (XML_Char *)s)); |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
reportProcessingInstruction |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
licm |
hosting getelementptr |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
epilogProcessor |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
epilogProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
epilogProcessor |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
epilogProcessor |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
licm |
hosting getelementptr |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doCdataSection |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doCdataSection |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doCdataSection |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
doContent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
PyExpat_XML_DefaultCurrent |
|
|
gvn |
load of type void (i8*, i8*, i32)* eliminated in favor of load |
ignoreSectionProcessor |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
ignoreSectionProcessor |
| 5368 |
|
|
|
| 5369 |
|
|
|
| 5370 |
|
|
|
| 5371 |
|
|
|
| 5372 |
|
|
defineAttribute(ELEMENT_TYPE *type, ATTRIBUTE_ID *attId, XML_Bool isCdata, |
| 5373 |
|
|
XML_Bool isId, const XML_Char *value, XML_Parser parser) |
| 5374 |
|
|
|
| 5375 |
|
|
|
| 5376 |
|
|
|
| 5377 |
|
|
/* The handling of default attributes gets messed up if we have |
| 5378 |
|
|
a default which duplicates a non-default. */ |
| 5379 |
|
|
|
| 5380 |
|
|
for (i = 0; i < type->nDefaultAtts; i++) |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
defineAttribute |
|
|
gvn |
load of type i32 eliminated in favor of phi |
defineAttribute |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
| 5381 |
|
|
if (attId == type->defaultAtts[i].id) |
|
|
licm |
hosting getelementptr |
defineAttribute |
|
|
licm |
hosting load |
defineAttribute |
| 5382 |
|
|
|
| 5383 |
|
|
if (isId && !type->idAtt && !attId->xmlns) |
| 5384 |
|
|
|
| 5385 |
|
|
|
| 5386 |
|
|
if (type->nDefaultAtts == type->allocDefaultAtts) { |
|
|
gvn |
load eliminated by PRE |
defineAttribute |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doProlog |
| 5387 |
|
|
if (type->allocDefaultAtts == 0) { |
| 5388 |
|
|
type->allocDefaultAtts = 8; |
| 5389 |
|
|
type->defaultAtts = (DEFAULT_ATTRIBUTE *)MALLOC(type->allocDefaultAtts |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
doProlog |
| 5390 |
|
|
* sizeof(DEFAULT_ATTRIBUTE)); |
| 5391 |
|
|
|
| 5392 |
|
|
|
| 5393 |
|
|
|
| 5394 |
|
|
|
| 5395 |
|
|
|
| 5396 |
|
|
int count = type->allocDefaultAtts * 2; |
| 5397 |
|
|
temp = (DEFAULT_ATTRIBUTE *) |
| 5398 |
|
|
REALLOC(type->defaultAtts, (count * sizeof(DEFAULT_ATTRIBUTE))); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
doProlog |
| 5399 |
|
|
|
| 5400 |
|
|
|
| 5401 |
|
|
type->allocDefaultAtts = count; |
| 5402 |
|
|
type->defaultAtts = temp; |
| 5403 |
|
|
|
| 5404 |
|
|
|
| 5405 |
|
|
att = type->defaultAtts + type->nDefaultAtts; |
|
|
gvn |
load eliminated by PRE |
defineAttribute |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
defineAttribute |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
defineAttribute |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doProlog |
| 5406 |
|
|
|
| 5407 |
|
|
|
| 5408 |
|
|
|
| 5409 |
|
|
|
| 5410 |
|
|
attId->maybeTokenized = XML_TRUE; |
| 5411 |
|
|
|
| 5412 |
|
|
|
| 5413 |
|
|
|
| 5414 |
|
|
|
| 5415 |
|
|
|
| 5416 |
|
|
setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *elementType) |
| 5417 |
|
|
|
| 5418 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
| 5419 |
|
|
|
| 5420 |
|
|
for (name = elementType->name; *name; name++) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setElementTypePrefix |
| 5421 |
|
|
if (*name == XML_T(ASCII_COLON)) { |
| 5422 |
|
|
|
| 5423 |
|
|
|
| 5424 |
|
|
for (s = elementType->name; s != name; s++) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setElementTypePrefix |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setElementTypePrefix |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
setElementTypePrefix |
|
|
loop-vectorize |
loop not vectorized |
setElementTypePrefix |
| 5425 |
|
|
if (!poolAppendChar(&dtd->pool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
setElementTypePrefix |
|
|
inline |
poolGrow will not be inlined into setElementTypePrefix |
setElementTypePrefix |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setElementTypePrefix |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setElementTypePrefix |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
setElementTypePrefix |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setElementTypePrefix |
|
|
gvn |
load eliminated by PRE |
setElementTypePrefix |
| 5426 |
|
|
|
| 5427 |
|
|
|
| 5428 |
|
|
if (!poolAppendChar(&dtd->pool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
setElementTypePrefix |
|
|
inline |
poolGrow will not be inlined into setElementTypePrefix |
setElementTypePrefix |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setElementTypePrefix |
|
|
gvn |
load eliminated by PRE |
setElementTypePrefix |
| 5429 |
|
|
|
| 5430 |
|
|
prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&dtd->pool), |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
setElementTypePrefix |
|
|
inline |
lookup will not be inlined into setElementTypePrefix |
setElementTypePrefix |
|
|
licm |
hosting getelementptr |
setElementTypePrefix |
|
|
licm |
hosting getelementptr |
setElementTypePrefix |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setElementTypePrefix |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setElementTypePrefix |
| 5431 |
|
|
|
| 5432 |
|
|
|
| 5433 |
|
|
|
| 5434 |
|
|
if (prefix->name == poolStart(&dtd->pool)) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setElementTypePrefix |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
setElementTypePrefix |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setElementTypePrefix |
| 5435 |
|
|
|
|
|
licm |
hosting bitcast |
setElementTypePrefix |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
setElementTypePrefix |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setElementTypePrefix |
| 5436 |
|
|
|
| 5437 |
|
|
|
| 5438 |
|
|
elementType->prefix = prefix; |
|
|
licm |
hosting getelementptr |
setElementTypePrefix |
|
|
licm |
hosting bitcast |
setElementTypePrefix |
| 5439 |
|
|
|
| 5440 |
|
|
|
| 5441 |
|
|
|
| 5442 |
|
|
|
| 5443 |
|
|
|
| 5444 |
|
|
|
| 5445 |
|
|
|
| 5446 |
|
|
getAttributeId(XML_Parser parser, const ENCODING *enc, |
| 5447 |
|
|
const char *start, const char *end) |
| 5448 |
|
|
|
| 5449 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
| 5450 |
|
|
|
| 5451 |
|
|
|
| 5452 |
|
|
if (!poolAppendChar(&dtd->pool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getAttributeId |
|
|
inline |
poolGrow will not be inlined into getAttributeId |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getAttributeId |
|
|
gvn |
load eliminated by PRE |
getAttributeId |
| 5453 |
|
|
|
| 5454 |
|
|
name = poolStoreString(&dtd->pool, enc, start, end); |
|
|
inline |
poolStoreString can be inlined into getAttributeId with cost=220 (threshold=250) |
getAttributeId |
|
|
inline |
poolStoreString inlined into getAttributeId |
getAttributeId |
| 5455 |
|
|
|
| 5456 |
|
|
|
| 5457 |
|
|
/* skip quotation mark - its storage will be re-used (like in name[-1]) */ |
| 5458 |
|
|
|
| 5459 |
|
|
id = (ATTRIBUTE_ID *)lookup(parser, &dtd->attributeIds, name, sizeof(ATTRIBUTE_ID)); |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
getAttributeId |
|
|
inline |
lookup will not be inlined into getAttributeId |
getAttributeId |
| 5460 |
|
|
|
| 5461 |
|
|
|
| 5462 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
getAttributeId |
| 5463 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
getAttributeId |
| 5464 |
|
|
|
| 5465 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
getAttributeId |
| 5466 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
getAttributeId |
| 5467 |
|
|
|
| 5468 |
|
|
else if (name[0] == XML_T(ASCII_x) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getAttributeId |
| 5469 |
|
|
&& name[1] == XML_T(ASCII_m) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getAttributeId |
| 5470 |
|
|
&& name[2] == XML_T(ASCII_l) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getAttributeId |
| 5471 |
|
|
&& name[3] == XML_T(ASCII_n) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getAttributeId |
| 5472 |
|
|
&& name[4] == XML_T(ASCII_s) |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getAttributeId |
| 5473 |
|
|
&& (name[5] == XML_T('\0') || name[5] == XML_T(ASCII_COLON))) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getAttributeId |
| 5474 |
|
|
if (name[5] == XML_T('\0')) |
| 5475 |
|
|
id->prefix = &dtd->defaultPrefix; |
| 5476 |
|
|
|
| 5477 |
|
|
id->prefix = (PREFIX *)lookup(parser, &dtd->prefixes, name + 6, sizeof(PREFIX)); |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
getAttributeId |
|
|
inline |
lookup will not be inlined into getAttributeId |
getAttributeId |
| 5478 |
|
|
|
| 5479 |
|
|
|
| 5480 |
|
|
|
| 5481 |
|
|
|
| 5482 |
|
|
for (i = 0; name[i]; i++) { |
|
|
gvn |
load eliminated by PRE |
getAttributeId |
|
|
licm |
sinking sext |
getAttributeId |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
getAttributeId |
|
|
loop-vectorize |
loop not vectorized |
getAttributeId |
| 5483 |
|
|
/* attributes without prefix are *not* in the default namespace */ |
| 5484 |
|
|
if (name[i] == XML_T(ASCII_COLON)) { |
| 5485 |
|
|
|
| 5486 |
|
|
for (j = 0; j < i; j++) { |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
getAttributeId |
|
|
loop-vectorize |
loop not vectorized |
getAttributeId |
| 5487 |
|
|
if (!poolAppendChar(&dtd->pool, name[j])) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getAttributeId |
|
|
inline |
poolGrow will not be inlined into getAttributeId |
getAttributeId |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getAttributeId |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
getAttributeId |
|
|
gvn |
load eliminated by PRE |
getAttributeId |
| 5488 |
|
|
|
| 5489 |
|
|
|
| 5490 |
|
|
if (!poolAppendChar(&dtd->pool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getAttributeId |
|
|
inline |
poolGrow will not be inlined into getAttributeId |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
getAttributeId |
|
|
gvn |
load eliminated by PRE |
getAttributeId |
| 5491 |
|
|
|
| 5492 |
|
|
id->prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&dtd->pool), |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
getAttributeId |
|
|
inline |
lookup will not be inlined into getAttributeId |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getAttributeId |
| 5493 |
|
|
|
| 5494 |
|
|
|
| 5495 |
|
|
|
| 5496 |
|
|
if (id->prefix->name == poolStart(&dtd->pool)) |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getAttributeId |
| 5497 |
|
|
|
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
getAttributeId |
| 5498 |
|
|
|
| 5499 |
|
|
|
| 5500 |
|
|
|
| 5501 |
|
|
|
| 5502 |
|
|
|
| 5503 |
|
|
|
| 5504 |
|
|
|
| 5505 |
|
|
|
| 5506 |
|
|
|
| 5507 |
|
|
|
| 5508 |
|
|
#define CONTEXT_SEP XML_T(ASCII_FF) |
| 5509 |
|
|
|
| 5510 |
|
|
|
| 5511 |
|
|
getContext(XML_Parser parser) |
| 5512 |
|
|
|
| 5513 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.DTD* not eliminated in favor of load because it is clobbered by store |
doContent |
| 5514 |
|
|
|
| 5515 |
|
|
XML_Bool needSep = XML_FALSE; |
| 5516 |
|
|
|
| 5517 |
|
|
if (dtd->defaultPrefix.binding) { |
| 5518 |
|
|
|
| 5519 |
|
|
|
| 5520 |
|
|
if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
hosting getelementptr |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 5521 |
|
|
|
| 5522 |
|
|
len = dtd->defaultPrefix.binding->uriLen; |
|
|
gvn |
load of type %struct.binding* not eliminated in favor of load because it is clobbered by store |
getContext |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.binding* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doContent |
| 5523 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getContext |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
| 5524 |
|
|
|
| 5525 |
|
|
for (i = 0; i < len; i++) |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 5526 |
|
|
if (!poolAppendChar(&tempPool, dtd->defaultPrefix.binding->uri[i])) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
doContent |
| 5527 |
|
|
|
| 5528 |
|
|
|
| 5529 |
|
|
|
| 5530 |
|
|
|
| 5531 |
|
|
hashTableIterInit(&iter, &(dtd->prefixes)); |
|
|
inline |
hashTableIterInit can be inlined into getContext with cost=-40 (threshold=375) |
getContext |
|
|
inline |
hashTableIterInit inlined into getContext |
getContext |
| 5532 |
|
|
|
| 5533 |
|
|
|
| 5534 |
|
|
|
| 5535 |
|
|
|
| 5536 |
|
|
PREFIX *prefix = (PREFIX *)hashTableIterNext(&iter); |
|
|
inline |
hashTableIterNext can be inlined into getContext with cost=-10 (threshold=250) |
getContext |
|
|
inline |
hashTableIterNext inlined into getContext |
getContext |
| 5537 |
|
|
|
| 5538 |
|
|
|
| 5539 |
|
|
|
| 5540 |
|
|
|
| 5541 |
|
|
if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
licm |
hosting getelementptr |
getContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 5542 |
|
|
|
| 5543 |
|
|
for (s = prefix->name; *s; s++) |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 5544 |
|
|
if (!poolAppendChar(&tempPool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
| 5545 |
|
|
|
| 5546 |
|
|
if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
| 5547 |
|
|
|
| 5548 |
|
|
len = prefix->binding->uriLen; |
|
|
gvn |
load of type %struct.binding* not eliminated in favor of load because it is clobbered by store |
getContext |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.binding* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
doContent |
| 5549 |
|
|
|
|
|
licm |
hosting getelementptr |
getContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
| 5550 |
|
|
|
| 5551 |
|
|
for (i = 0; i < len; i++) |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 5552 |
|
|
if (!poolAppendChar(&tempPool, prefix->binding->uri[i])) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.binding* not eliminated because it is clobbered by call |
doContent |
| 5553 |
|
|
|
| 5554 |
|
|
|
| 5555 |
|
|
|
| 5556 |
|
|
|
| 5557 |
|
|
|
| 5558 |
|
|
hashTableIterInit(&iter, &(dtd->generalEntities)); |
|
|
inline |
hashTableIterInit can be inlined into getContext with cost=-15040 (threshold=375) |
getContext |
|
|
inline |
hashTableIterInit inlined into getContext |
getContext |
| 5559 |
|
|
|
| 5560 |
|
|
|
| 5561 |
|
|
ENTITY *e = (ENTITY *)hashTableIterNext(&iter); |
|
|
inline |
hashTableIterNext can be inlined into getContext with cost=-15010 (threshold=250) |
getContext |
|
|
inline |
hashTableIterNext inlined into getContext |
getContext |
| 5562 |
|
|
|
| 5563 |
|
|
|
| 5564 |
|
|
|
| 5565 |
|
|
|
| 5566 |
|
|
if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
licm |
hosting getelementptr |
getContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 5567 |
|
|
|
| 5568 |
|
|
for (s = e->name; *s; s++) |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 5569 |
|
|
if (!poolAppendChar(&tempPool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
licm |
hosting getelementptr |
getContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 5570 |
|
|
|
| 5571 |
|
|
|
| 5572 |
|
|
|
| 5573 |
|
|
|
| 5574 |
|
|
if (!poolAppendChar(&tempPool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getContext |
|
|
inline |
poolGrow will not be inlined into getContext |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getContext |
|
|
gvn |
load eliminated by PRE |
getContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 5575 |
|
|
|
| 5576 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getContext |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doContent |
| 5577 |
|
|
|
| 5578 |
|
|
|
| 5579 |
|
|
|
| 5580 |
|
|
setContext(XML_Parser parser, const XML_Char *context) |
| 5581 |
|
|
|
| 5582 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
| 5583 |
|
|
const XML_Char *s = context; |
| 5584 |
|
|
|
| 5585 |
|
|
while (*context != XML_T('\0')) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
setContext |
|
|
loop-vectorize |
loop not vectorized |
setContext |
| 5586 |
|
|
if (*s == CONTEXT_SEP || *s == XML_T('\0')) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load eliminated by PRE |
setContext |
| 5587 |
|
|
|
| 5588 |
|
|
if (!poolAppendChar(&tempPool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
setContext |
|
|
inline |
poolGrow will not be inlined into setContext |
setContext |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
setContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setContext |
|
|
gvn |
load eliminated by PRE |
setContext |
| 5589 |
|
|
|
| 5590 |
|
|
e = (ENTITY *)lookup(parser, &dtd->generalEntities, poolStart(&tempPool), 0); |
|
|
inline |
lookup can be inlined into setContext with cost=205 (threshold=250) |
setContext |
|
|
inline |
lookup inlined into setContext |
setContext |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
| 5591 |
|
|
|
| 5592 |
|
|
|
| 5593 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
| 5594 |
|
|
|
| 5595 |
|
|
|
| 5596 |
|
|
|
|
|
licm |
hosting bitcast |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
setContext |
| 5597 |
|
|
|
| 5598 |
|
|
else if (*s == XML_T(ASCII_EQUALS)) { |
| 5599 |
|
|
|
| 5600 |
|
|
if (poolLength(&tempPool) == 0) |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
licm |
hosting bitcast |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
setContext |
| 5601 |
|
|
prefix = &dtd->defaultPrefix; |
|
|
licm |
hosting getelementptr |
setContext |
| 5602 |
|
|
|
| 5603 |
|
|
if (!poolAppendChar(&tempPool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
setContext |
|
|
inline |
poolGrow will not be inlined into setContext |
setContext |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setContext |
|
|
gvn |
load eliminated by PRE |
setContext |
| 5604 |
|
|
|
| 5605 |
|
|
prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&tempPool), |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
setContext |
|
|
inline |
lookup will not be inlined into setContext |
setContext |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
| 5606 |
|
|
|
| 5607 |
|
|
|
| 5608 |
|
|
|
| 5609 |
|
|
if (prefix->name == poolStart(&tempPool)) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
setContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setContext |
| 5610 |
|
|
prefix->name = poolCopyString(&dtd->pool, prefix->name); |
|
|
inline |
poolCopyString can be inlined into setContext with cost=75 (threshold=250) |
setContext |
|
|
inline |
poolCopyString inlined into setContext |
setContext |
|
|
licm |
hosting getelementptr |
setContext |
| 5611 |
|
|
|
| 5612 |
|
|
|
| 5613 |
|
|
|
| 5614 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
licm |
hosting bitcast |
setContext |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
setContext |
|
|
gvn |
load eliminated by PRE |
setContext |
| 5615 |
|
|
|
| 5616 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
setContext |
|
|
loop-vectorize |
loop not vectorized |
setContext |
| 5617 |
|
|
*context != CONTEXT_SEP && *context != XML_T('\0'); |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
| 5618 |
|
|
|
| 5619 |
|
|
if (!poolAppendChar(&tempPool, *context)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
setContext |
|
|
inline |
poolGrow will not be inlined into setContext |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by call |
setContext |
|
|
gvn |
load eliminated by PRE |
setContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setContext |
| 5620 |
|
|
|
| 5621 |
|
|
if (!poolAppendChar(&tempPool, XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
setContext |
|
|
inline |
poolGrow will not be inlined into setContext |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setContext |
|
|
gvn |
load eliminated by PRE |
setContext |
| 5622 |
|
|
|
| 5623 |
|
|
if (addBinding(parser, prefix, NULL, poolStart(&tempPool), |
|
|
inline |
addBinding too costly to inline (cost=630, threshold=625) |
setContext |
|
|
inline |
addBinding will not be inlined into setContext |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
| 5624 |
|
|
&inheritedBindings) != XML_ERROR_NONE) |
|
|
licm |
hosting getelementptr |
setContext |
| 5625 |
|
|
|
| 5626 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
licm |
hosting bitcast |
setContext |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
setContext |
| 5627 |
|
|
if (*context != XML_T('\0')) |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
setContext |
| 5628 |
|
|
|
| 5629 |
|
|
|
| 5630 |
|
|
|
| 5631 |
|
|
|
| 5632 |
|
|
if (!poolAppendChar(&tempPool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
setContext |
|
|
inline |
poolGrow will not be inlined into setContext |
setContext |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
setContext |
|
|
gvn |
load eliminated by PRE |
setContext |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
setContext |
| 5633 |
|
|
|
| 5634 |
|
|
|
| 5635 |
|
|
|
| 5636 |
|
|
|
| 5637 |
|
|
|
| 5638 |
|
|
|
| 5639 |
|
|
|
| 5640 |
|
|
|
| 5641 |
|
|
normalizePublicId(XML_Char *publicId) |
| 5642 |
|
|
|
| 5643 |
|
|
|
| 5644 |
|
|
|
| 5645 |
|
|
for (s = publicId; *s; s++) { |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
normalizePublicId |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
normalizePublicId |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
| 5646 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: loop contains a switch statement |
doProlog |
| 5647 |
|
|
|
| 5648 |
|
|
|
| 5649 |
|
|
|
| 5650 |
|
|
if (p != publicId && p[-1] != 0x20) |
| 5651 |
|
|
|
| 5652 |
|
|
|
| 5653 |
|
|
|
| 5654 |
|
|
|
| 5655 |
|
|
|
| 5656 |
|
|
|
| 5657 |
|
|
if (p != publicId && p[-1] == 0x20) |
| 5658 |
|
|
|
| 5659 |
|
|
|
| 5660 |
|
|
|
| 5661 |
|
|
|
| 5662 |
|
|
|
| 5663 |
|
|
dtdCreate(const XML_Memory_Handling_Suite *ms) |
| 5664 |
|
|
|
| 5665 |
|
|
DTD *p = (DTD *)ms->malloc_fcn(sizeof(DTD)); |
|
|
gvn |
load of type i8* (i64)* not eliminated in favor of load because it is clobbered by call |
parserCreate |
| 5666 |
|
|
|
| 5667 |
|
|
|
| 5668 |
|
|
poolInit(&(p->pool), ms); |
|
|
inline |
poolInit can be inlined into dtdCreate with cost=-30 (threshold=375) |
dtdCreate |
|
|
inline |
poolInit inlined into dtdCreate |
dtdCreate |
| 5669 |
|
|
poolInit(&(p->entityValuePool), ms); |
|
|
inline |
poolInit can be inlined into dtdCreate with cost=-30 (threshold=375) |
dtdCreate |
|
|
inline |
poolInit inlined into dtdCreate |
dtdCreate |
| 5670 |
|
|
hashTableInit(&(p->generalEntities), ms); |
|
|
inline |
hashTableInit can be inlined into dtdCreate with cost=-15020 (threshold=375) |
dtdCreate |
|
|
inline |
hashTableInit inlined into dtdCreate |
dtdCreate |
| 5671 |
|
|
hashTableInit(&(p->elementTypes), ms); |
|
|
inline |
hashTableInit can be inlined into dtdCreate with cost=-20 (threshold=375) |
dtdCreate |
|
|
inline |
hashTableInit inlined into dtdCreate |
dtdCreate |
| 5672 |
|
|
hashTableInit(&(p->attributeIds), ms); |
|
|
inline |
hashTableInit can be inlined into dtdCreate with cost=-20 (threshold=375) |
dtdCreate |
|
|
inline |
hashTableInit inlined into dtdCreate |
dtdCreate |
| 5673 |
|
|
hashTableInit(&(p->prefixes), ms); |
|
|
inline |
hashTableInit can be inlined into dtdCreate with cost=-20 (threshold=375) |
dtdCreate |
|
|
inline |
hashTableInit inlined into dtdCreate |
dtdCreate |
| 5674 |
|
|
|
| 5675 |
|
|
p->paramEntityRead = XML_FALSE; |
| 5676 |
|
|
hashTableInit(&(p->paramEntities), ms); |
|
|
inline |
hashTableInit can be inlined into dtdCreate with cost=-20 (threshold=375) |
dtdCreate |
|
|
inline |
hashTableInit inlined into dtdCreate |
dtdCreate |
| 5677 |
|
|
|
| 5678 |
|
|
p->defaultPrefix.name = NULL; |
| 5679 |
|
|
p->defaultPrefix.binding = NULL; |
| 5680 |
|
|
|
| 5681 |
|
|
p->in_eldecl = XML_FALSE; |
| 5682 |
|
|
|
| 5683 |
|
|
|
| 5684 |
|
|
|
| 5685 |
|
|
|
| 5686 |
|
|
|
| 5687 |
|
|
|
| 5688 |
|
|
|
| 5689 |
|
|
p->keepProcessing = XML_TRUE; |
| 5690 |
|
|
p->hasParamEntityRefs = XML_FALSE; |
| 5691 |
|
|
p->standalone = XML_FALSE; |
| 5692 |
|
|
|
| 5693 |
|
|
|
| 5694 |
|
|
|
| 5695 |
|
|
|
| 5696 |
|
|
dtdReset(DTD *p, const XML_Memory_Handling_Suite *ms) |
| 5697 |
|
|
|
| 5698 |
|
|
|
| 5699 |
|
|
hashTableIterInit(&iter, &(p->elementTypes)); |
|
|
inline |
hashTableIterInit can be inlined into dtdReset with cost=-40 (threshold=375) |
dtdReset |
|
|
inline |
hashTableIterInit inlined into dtdReset |
dtdReset |
| 5700 |
|
|
|
| 5701 |
|
|
ELEMENT_TYPE *e = (ELEMENT_TYPE *)hashTableIterNext(&iter); |
|
|
inline |
hashTableIterNext can be inlined into dtdReset with cost=-10 (threshold=250) |
dtdReset |
|
|
inline |
hashTableIterNext inlined into dtdReset |
dtdReset |
| 5702 |
|
|
|
| 5703 |
|
|
|
| 5704 |
|
|
if (e->allocDefaultAtts != 0) |
| 5705 |
|
|
ms->free_fcn(e->defaultAtts); |
|
|
licm |
hosting getelementptr |
dtdReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdReset |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserReset |
| 5706 |
|
|
|
| 5707 |
|
|
hashTableClear(&(p->generalEntities)); |
|
|
inline |
hashTableClear can be inlined into dtdReset with cost=55 (threshold=250) |
dtdReset |
|
|
inline |
hashTableClear inlined into dtdReset |
dtdReset |
| 5708 |
|
|
|
| 5709 |
|
|
p->paramEntityRead = XML_FALSE; |
| 5710 |
|
|
hashTableClear(&(p->paramEntities)); |
|
|
inline |
hashTableClear can be inlined into dtdReset with cost=55 (threshold=250) |
dtdReset |
|
|
inline |
hashTableClear inlined into dtdReset |
dtdReset |
| 5711 |
|
|
|
| 5712 |
|
|
hashTableClear(&(p->elementTypes)); |
|
|
inline |
hashTableClear can be inlined into dtdReset with cost=55 (threshold=250) |
dtdReset |
|
|
inline |
hashTableClear inlined into dtdReset |
dtdReset |
| 5713 |
|
|
hashTableClear(&(p->attributeIds)); |
|
|
inline |
hashTableClear can be inlined into dtdReset with cost=55 (threshold=250) |
dtdReset |
|
|
inline |
hashTableClear inlined into dtdReset |
dtdReset |
| 5714 |
|
|
hashTableClear(&(p->prefixes)); |
|
|
inline |
hashTableClear can be inlined into dtdReset with cost=-14945 (threshold=250) |
dtdReset |
|
|
inline |
hashTableClear inlined into dtdReset |
dtdReset |
| 5715 |
|
|
|
|
|
inline |
poolClear can be inlined into dtdReset with cost=30 (threshold=250) |
dtdReset |
|
|
inline |
poolClear inlined into dtdReset |
dtdReset |
| 5716 |
|
|
poolClear(&(p->entityValuePool)); |
|
|
inline |
poolClear can be inlined into dtdReset with cost=30 (threshold=250) |
dtdReset |
|
|
inline |
poolClear inlined into dtdReset |
dtdReset |
| 5717 |
|
|
p->defaultPrefix.name = NULL; |
| 5718 |
|
|
p->defaultPrefix.binding = NULL; |
| 5719 |
|
|
|
| 5720 |
|
|
p->in_eldecl = XML_FALSE; |
| 5721 |
|
|
|
| 5722 |
|
|
ms->free_fcn(p->scaffIndex); |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
dtdReset |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_ParserReset |
| 5723 |
|
|
|
| 5724 |
|
|
ms->free_fcn(p->scaffold); |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
| 5725 |
|
|
|
| 5726 |
|
|
|
| 5727 |
|
|
|
| 5728 |
|
|
|
| 5729 |
|
|
|
| 5730 |
|
|
|
| 5731 |
|
|
|
| 5732 |
|
|
p->keepProcessing = XML_TRUE; |
| 5733 |
|
|
p->hasParamEntityRefs = XML_FALSE; |
| 5734 |
|
|
p->standalone = XML_FALSE; |
| 5735 |
|
|
|
| 5736 |
|
|
|
| 5737 |
|
|
|
| 5738 |
|
|
dtdDestroy(DTD *p, XML_Bool isDocEntity, const XML_Memory_Handling_Suite *ms) |
| 5739 |
|
|
|
| 5740 |
|
|
|
| 5741 |
|
|
hashTableIterInit(&iter, &(p->elementTypes)); |
|
|
inline |
hashTableIterInit can be inlined into dtdDestroy with cost=-40 (threshold=375) |
dtdDestroy |
|
|
inline |
hashTableIterInit inlined into dtdDestroy |
dtdDestroy |
| 5742 |
|
|
|
| 5743 |
|
|
ELEMENT_TYPE *e = (ELEMENT_TYPE *)hashTableIterNext(&iter); |
|
|
inline |
hashTableIterNext can be inlined into dtdDestroy with cost=-10 (threshold=250) |
dtdDestroy |
|
|
inline |
hashTableIterNext inlined into dtdDestroy |
dtdDestroy |
| 5744 |
|
|
|
| 5745 |
|
|
|
| 5746 |
|
|
if (e->allocDefaultAtts != 0) |
| 5747 |
|
|
ms->free_fcn(e->defaultAtts); |
|
|
licm |
hosting getelementptr |
dtdDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 5748 |
|
|
|
| 5749 |
|
|
hashTableDestroy(&(p->generalEntities)); |
|
|
inline |
hashTableDestroy can be inlined into dtdDestroy with cost=60 (threshold=250) |
dtdDestroy |
|
|
inline |
hashTableDestroy inlined into dtdDestroy |
dtdDestroy |
| 5750 |
|
|
|
| 5751 |
|
|
hashTableDestroy(&(p->paramEntities)); |
|
|
inline |
hashTableDestroy can be inlined into dtdDestroy with cost=60 (threshold=250) |
dtdDestroy |
|
|
inline |
hashTableDestroy inlined into dtdDestroy |
dtdDestroy |
| 5752 |
|
|
|
| 5753 |
|
|
hashTableDestroy(&(p->elementTypes)); |
|
|
inline |
hashTableDestroy can be inlined into dtdDestroy with cost=60 (threshold=250) |
dtdDestroy |
|
|
inline |
hashTableDestroy inlined into dtdDestroy |
dtdDestroy |
| 5754 |
|
|
hashTableDestroy(&(p->attributeIds)); |
|
|
inline |
hashTableDestroy can be inlined into dtdDestroy with cost=60 (threshold=250) |
dtdDestroy |
|
|
inline |
hashTableDestroy inlined into dtdDestroy |
dtdDestroy |
| 5755 |
|
|
hashTableDestroy(&(p->prefixes)); |
|
|
inline |
hashTableDestroy can be inlined into dtdDestroy with cost=-14940 (threshold=250) |
dtdDestroy |
|
|
inline |
hashTableDestroy inlined into dtdDestroy |
dtdDestroy |
| 5756 |
|
|
|
|
|
inline |
poolDestroy can be inlined into dtdDestroy with cost=65 (threshold=250) |
dtdDestroy |
|
|
inline |
poolDestroy inlined into dtdDestroy |
dtdDestroy |
| 5757 |
|
|
poolDestroy(&(p->entityValuePool)); |
|
|
inline |
poolDestroy can be inlined into dtdDestroy with cost=65 (threshold=250) |
dtdDestroy |
|
|
inline |
poolDestroy inlined into dtdDestroy |
dtdDestroy |
| 5758 |
|
|
|
| 5759 |
|
|
ms->free_fcn(p->scaffIndex); |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 5760 |
|
|
ms->free_fcn(p->scaffold); |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 5761 |
|
|
|
| 5762 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 5763 |
|
|
|
| 5764 |
|
|
|
| 5765 |
|
|
/* Do a deep copy of the DTD. Return 0 for out of memory, non-zero otherwise. |
| 5766 |
|
|
The new DTD has already been initialized. |
| 5767 |
|
|
|
| 5768 |
|
|
|
| 5769 |
|
|
dtdCopy(XML_Parser oldParser, DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms) |
| 5770 |
|
|
|
| 5771 |
|
|
|
| 5772 |
|
|
|
| 5773 |
|
|
/* Copy the prefix table. */ |
| 5774 |
|
|
|
| 5775 |
|
|
hashTableIterInit(&iter, &(oldDtd->prefixes)); |
|
|
inline |
hashTableIterInit can be inlined into dtdCopy with cost=-40 (threshold=375) |
dtdCopy |
|
|
inline |
hashTableIterInit inlined into dtdCopy |
dtdCopy |
| 5776 |
|
|
|
| 5777 |
|
|
|
| 5778 |
|
|
const PREFIX *oldP = (PREFIX *)hashTableIterNext(&iter); |
|
|
inline |
hashTableIterNext can be inlined into dtdCopy with cost=-10 (threshold=250) |
dtdCopy |
|
|
inline |
hashTableIterNext inlined into dtdCopy |
dtdCopy |
| 5779 |
|
|
|
| 5780 |
|
|
|
| 5781 |
|
|
name = poolCopyString(&(newDtd->pool), oldP->name); |
|
|
inline |
poolCopyString can be inlined into dtdCopy with cost=75 (threshold=250) |
dtdCopy |
|
|
inline |
poolCopyString inlined into dtdCopy |
dtdCopy |
|
|
licm |
hosting getelementptr |
dtdCopy |
| 5782 |
|
|
|
| 5783 |
|
|
|
| 5784 |
|
|
if (!lookup(oldParser, &(newDtd->prefixes), name, sizeof(PREFIX))) |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
dtdCopy |
|
|
inline |
lookup will not be inlined into dtdCopy |
dtdCopy |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
lookup will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 5785 |
|
|
|
| 5786 |
|
|
|
| 5787 |
|
|
|
| 5788 |
|
|
hashTableIterInit(&iter, &(oldDtd->attributeIds)); |
|
|
inline |
hashTableIterInit can be inlined into dtdCopy with cost=-40 (threshold=375) |
dtdCopy |
|
|
inline |
hashTableIterInit inlined into dtdCopy |
dtdCopy |
| 5789 |
|
|
|
| 5790 |
|
|
/* Copy the attribute id table. */ |
| 5791 |
|
|
|
| 5792 |
|
|
|
| 5793 |
|
|
|
| 5794 |
|
|
|
| 5795 |
|
|
const ATTRIBUTE_ID *oldA = (ATTRIBUTE_ID *)hashTableIterNext(&iter); |
|
|
inline |
hashTableIterNext can be inlined into dtdCopy with cost=-10 (threshold=250) |
dtdCopy |
|
|
inline |
hashTableIterNext inlined into dtdCopy |
dtdCopy |
| 5796 |
|
|
|
| 5797 |
|
|
|
| 5798 |
|
|
|
| 5799 |
|
|
/* Remember to allocate the scratch byte before the name. */ |
| 5800 |
|
|
if (!poolAppendChar(&(newDtd->pool), XML_T('\0'))) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
dtdCopy |
|
|
inline |
poolGrow will not be inlined into dtdCopy |
dtdCopy |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
dtdCopy |
|
|
gvn |
load eliminated by PRE |
dtdCopy |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
poolGrow will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5801 |
|
|
|
| 5802 |
|
|
name = poolCopyString(&(newDtd->pool), oldA->name); |
|
|
inline |
poolCopyString can be inlined into dtdCopy with cost=75 (threshold=250) |
dtdCopy |
|
|
inline |
poolCopyString inlined into dtdCopy |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
| 5803 |
|
|
|
| 5804 |
|
|
|
| 5805 |
|
|
|
| 5806 |
|
|
newA = (ATTRIBUTE_ID *)lookup(oldParser, &(newDtd->attributeIds), name, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
dtdCopy |
|
|
inline |
lookup will not be inlined into dtdCopy |
dtdCopy |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
lookup will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 5807 |
|
|
|
| 5808 |
|
|
|
| 5809 |
|
|
|
| 5810 |
|
|
newA->maybeTokenized = oldA->maybeTokenized; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5811 |
|
|
|
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5812 |
|
|
newA->xmlns = oldA->xmlns; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5813 |
|
|
if (oldA->prefix == &oldDtd->defaultPrefix) |
|
|
licm |
hosting getelementptr |
dtdCopy |
| 5814 |
|
|
newA->prefix = &newDtd->defaultPrefix; |
|
|
licm |
hosting getelementptr |
dtdCopy |
| 5815 |
|
|
|
| 5816 |
|
|
newA->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), |
|
|
inline |
lookup can be inlined into dtdCopy with cost=205 (threshold=250) |
dtdCopy |
|
|
inline |
lookup inlined into dtdCopy |
dtdCopy |
| 5817 |
|
|
|
| 5818 |
|
|
|
| 5819 |
|
|
|
| 5820 |
|
|
|
| 5821 |
|
|
/* Copy the element type table. */ |
| 5822 |
|
|
|
| 5823 |
|
|
hashTableIterInit(&iter, &(oldDtd->elementTypes)); |
|
|
inline |
hashTableIterInit can be inlined into dtdCopy with cost=-40 (threshold=375) |
dtdCopy |
|
|
inline |
hashTableIterInit inlined into dtdCopy |
dtdCopy |
| 5824 |
|
|
|
| 5825 |
|
|
|
| 5826 |
|
|
|
| 5827 |
|
|
|
| 5828 |
|
|
|
| 5829 |
|
|
const ELEMENT_TYPE *oldE = (ELEMENT_TYPE *)hashTableIterNext(&iter); |
|
|
inline |
hashTableIterNext can be inlined into dtdCopy with cost=-10 (threshold=250) |
dtdCopy |
|
|
inline |
hashTableIterNext inlined into dtdCopy |
dtdCopy |
| 5830 |
|
|
|
| 5831 |
|
|
|
| 5832 |
|
|
name = poolCopyString(&(newDtd->pool), oldE->name); |
|
|
inline |
poolCopyString can be inlined into dtdCopy with cost=75 (threshold=250) |
dtdCopy |
|
|
inline |
poolCopyString inlined into dtdCopy |
dtdCopy |
|
|
licm |
hosting getelementptr |
dtdCopy |
| 5833 |
|
|
|
| 5834 |
|
|
|
| 5835 |
|
|
newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
dtdCopy |
|
|
inline |
lookup will not be inlined into dtdCopy |
dtdCopy |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
lookup will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 5836 |
|
|
|
| 5837 |
|
|
|
| 5838 |
|
|
|
| 5839 |
|
|
if (oldE->nDefaultAtts) { |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5840 |
|
|
newE->defaultAtts = (DEFAULT_ATTRIBUTE *) |
| 5841 |
|
|
ms->malloc_fcn(oldE->nDefaultAtts * sizeof(DEFAULT_ATTRIBUTE)); |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5842 |
|
|
if (!newE->defaultAtts) { |
| 5843 |
|
|
|
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type void (i8*)* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5844 |
|
|
|
| 5845 |
|
|
|
| 5846 |
|
|
|
| 5847 |
|
|
|
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.attribute_id* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5848 |
|
|
newE->idAtt = (ATTRIBUTE_ID *) |
| 5849 |
|
|
lookup(oldParser, &(newDtd->attributeIds), oldE->idAtt->name, 0); |
|
|
inline |
lookup can be inlined into dtdCopy with cost=205 (threshold=250) |
dtdCopy |
|
|
inline |
lookup inlined into dtdCopy |
dtdCopy |
| 5850 |
|
|
newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts; |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5851 |
|
|
|
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.prefix* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5852 |
|
|
newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), |
|
|
inline |
lookup can be inlined into dtdCopy with cost=205 (threshold=250) |
dtdCopy |
|
|
inline |
lookup inlined into dtdCopy |
dtdCopy |
| 5853 |
|
|
|
| 5854 |
|
|
for (i = 0; i < newE->nDefaultAtts; i++) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type i32 eliminated in favor of load |
dtdCopy |
|
|
gvn |
load of type i32 not eliminated in favor of store because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i32 not eliminated in favor of store because it is clobbered by call |
dtdCopy |
|
|
gvn |
load eliminated by PRE |
dtdCopy |
| 5855 |
|
|
newE->defaultAtts[i].id = (ATTRIBUTE_ID *) |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
licm |
hosting bitcast |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5856 |
|
|
lookup(oldParser, &(newDtd->attributeIds), oldE->defaultAtts[i].id->name, 0); |
|
|
inline |
lookup can be inlined into dtdCopy with cost=205 (threshold=250) |
dtdCopy |
|
|
inline |
lookup inlined into dtdCopy |
dtdCopy |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
licm |
hosting bitcast |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by store |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
| 5857 |
|
|
newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* eliminated in favor of load |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* eliminated in favor of load |
dtdCopy |
| 5858 |
|
|
if (oldE->defaultAtts[i].value) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* eliminated in favor of load |
dtdCopy |
| 5859 |
|
|
newE->defaultAtts[i].value |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated in favor of load because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated in favor of load because it is clobbered by call |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5860 |
|
|
= poolCopyString(&(newDtd->pool), oldE->defaultAtts[i].value); |
|
|
inline |
poolCopyString can be inlined into dtdCopy with cost=75 (threshold=250) |
dtdCopy |
|
|
inline |
poolCopyString inlined into dtdCopy |
dtdCopy |
| 5861 |
|
|
if (!newE->defaultAtts[i].value) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* eliminated in favor of load |
dtdCopy |
|
|
gvn |
load of type i8* eliminated in favor of phi |
dtdCopy |
| 5862 |
|
|
|
| 5863 |
|
|
|
| 5864 |
|
|
|
| 5865 |
|
|
newE->defaultAtts[i].value = NULL; |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type %struct.DEFAULT_ATTRIBUTE* eliminated in favor of load |
dtdCopy |
| 5866 |
|
|
|
| 5867 |
|
|
|
| 5868 |
|
|
|
| 5869 |
|
|
/* Copy the entity tables. */ |
| 5870 |
|
|
if (!copyEntityTable(oldParser, |
|
|
inline |
copyEntityTable too costly to inline (cost=630, threshold=625) |
dtdCopy |
|
|
inline |
copyEntityTable will not be inlined into dtdCopy |
dtdCopy |
|
|
inline |
copyEntityTable too costly to inline (cost=630, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
copyEntityTable will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 5871 |
|
|
&(newDtd->generalEntities), |
| 5872 |
|
|
|
| 5873 |
|
|
&(oldDtd->generalEntities))) |
| 5874 |
|
|
|
| 5875 |
|
|
|
| 5876 |
|
|
|
| 5877 |
|
|
if (!copyEntityTable(oldParser, |
|
|
inline |
copyEntityTable too costly to inline (cost=630, threshold=625) |
dtdCopy |
|
|
inline |
copyEntityTable will not be inlined into dtdCopy |
dtdCopy |
|
|
inline |
copyEntityTable too costly to inline (cost=630, threshold=625) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
copyEntityTable will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
| 5878 |
|
|
&(newDtd->paramEntities), |
| 5879 |
|
|
|
| 5880 |
|
|
&(oldDtd->paramEntities))) |
| 5881 |
|
|
|
| 5882 |
|
|
newDtd->paramEntityRead = oldDtd->paramEntityRead; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5883 |
|
|
|
| 5884 |
|
|
|
| 5885 |
|
|
newDtd->keepProcessing = oldDtd->keepProcessing; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5886 |
|
|
newDtd->hasParamEntityRefs = oldDtd->hasParamEntityRefs; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5887 |
|
|
newDtd->standalone = oldDtd->standalone; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5888 |
|
|
|
| 5889 |
|
|
/* Don't want deep copying for scaffolding */ |
| 5890 |
|
|
newDtd->in_eldecl = oldDtd->in_eldecl; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5891 |
|
|
newDtd->scaffold = oldDtd->scaffold; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5892 |
|
|
newDtd->contentStringLen = oldDtd->contentStringLen; |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5893 |
|
|
newDtd->scaffSize = oldDtd->scaffSize; |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5894 |
|
|
newDtd->scaffLevel = oldDtd->scaffLevel; |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5895 |
|
|
newDtd->scaffIndex = oldDtd->scaffIndex; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
| 5896 |
|
|
|
| 5897 |
|
|
|
| 5898 |
|
|
|
| 5899 |
|
|
|
| 5900 |
|
|
|
| 5901 |
|
|
copyEntityTable(XML_Parser oldParser, |
| 5902 |
|
|
|
| 5903 |
|
|
|
| 5904 |
|
|
const HASH_TABLE *oldTable) |
| 5905 |
|
|
|
| 5906 |
|
|
|
| 5907 |
|
|
const XML_Char *cachedOldBase = NULL; |
| 5908 |
|
|
const XML_Char *cachedNewBase = NULL; |
| 5909 |
|
|
|
| 5910 |
|
|
hashTableIterInit(&iter, oldTable); |
|
|
inline |
hashTableIterInit can be inlined into copyEntityTable with cost=-40 (threshold=375) |
copyEntityTable |
|
|
inline |
hashTableIterInit inlined into copyEntityTable |
copyEntityTable |
| 5911 |
|
|
|
| 5912 |
|
|
|
| 5913 |
|
|
|
| 5914 |
|
|
|
| 5915 |
|
|
const ENTITY *oldE = (ENTITY *)hashTableIterNext(&iter); |
|
|
inline |
hashTableIterNext can be inlined into copyEntityTable with cost=-10 (threshold=250) |
copyEntityTable |
|
|
inline |
hashTableIterNext inlined into copyEntityTable |
copyEntityTable |
| 5916 |
|
|
|
| 5917 |
|
|
|
| 5918 |
|
|
name = poolCopyString(newPool, oldE->name); |
|
|
inline |
poolCopyString can be inlined into copyEntityTable with cost=75 (threshold=250) |
copyEntityTable |
|
|
inline |
poolCopyString inlined into copyEntityTable |
copyEntityTable |
| 5919 |
|
|
|
| 5920 |
|
|
|
| 5921 |
|
|
newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
copyEntityTable |
|
|
inline |
lookup will not be inlined into copyEntityTable |
copyEntityTable |
| 5922 |
|
|
|
| 5923 |
|
|
|
| 5924 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
copyEntityTable |
| 5925 |
|
|
const XML_Char *tem = poolCopyString(newPool, oldE->systemId); |
|
|
inline |
poolCopyString can be inlined into copyEntityTable with cost=75 (threshold=250) |
copyEntityTable |
|
|
inline |
poolCopyString inlined into copyEntityTable |
copyEntityTable |
| 5926 |
|
|
|
| 5927 |
|
|
|
| 5928 |
|
|
|
| 5929 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
copyEntityTable |
| 5930 |
|
|
if (oldE->base == cachedOldBase) |
| 5931 |
|
|
newE->base = cachedNewBase; |
| 5932 |
|
|
|
| 5933 |
|
|
cachedOldBase = oldE->base; |
| 5934 |
|
|
tem = poolCopyString(newPool, cachedOldBase); |
|
|
inline |
poolCopyString can be inlined into copyEntityTable with cost=75 (threshold=250) |
copyEntityTable |
|
|
inline |
poolCopyString inlined into copyEntityTable |
copyEntityTable |
| 5935 |
|
|
|
| 5936 |
|
|
|
| 5937 |
|
|
cachedNewBase = newE->base = tem; |
| 5938 |
|
|
|
| 5939 |
|
|
|
| 5940 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
copyEntityTable |
| 5941 |
|
|
tem = poolCopyString(newPool, oldE->publicId); |
|
|
inline |
poolCopyString can be inlined into copyEntityTable with cost=75 (threshold=250) |
copyEntityTable |
|
|
inline |
poolCopyString inlined into copyEntityTable |
copyEntityTable |
| 5942 |
|
|
|
| 5943 |
|
|
|
| 5944 |
|
|
|
| 5945 |
|
|
|
| 5946 |
|
|
|
| 5947 |
|
|
|
| 5948 |
|
|
const XML_Char *tem = poolCopyStringN(newPool, oldE->textPtr, |
|
|
inline |
poolCopyStringN can be inlined into copyEntityTable with cost=-14860 (threshold=250) |
copyEntityTable |
|
|
inline |
poolCopyStringN inlined into copyEntityTable |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
copyEntityTable |
| 5949 |
|
|
|
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
copyEntityTable |
| 5950 |
|
|
|
| 5951 |
|
|
|
| 5952 |
|
|
|
| 5953 |
|
|
newE->textLen = oldE->textLen; |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
| 5954 |
|
|
|
| 5955 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
copyEntityTable |
| 5956 |
|
|
const XML_Char *tem = poolCopyString(newPool, oldE->notation); |
|
|
inline |
poolCopyString can be inlined into copyEntityTable with cost=75 (threshold=250) |
copyEntityTable |
|
|
inline |
poolCopyString inlined into copyEntityTable |
copyEntityTable |
| 5957 |
|
|
|
| 5958 |
|
|
|
| 5959 |
|
|
|
| 5960 |
|
|
|
| 5961 |
|
|
newE->is_param = oldE->is_param; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
copyEntityTable |
| 5962 |
|
|
newE->is_internal = oldE->is_internal; |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
copyEntityTable |
| 5963 |
|
|
|
| 5964 |
|
|
|
| 5965 |
|
|
|
| 5966 |
|
|
|
| 5967 |
|
|
|
| 5968 |
|
|
|
| 5969 |
|
|
|
| 5970 |
|
|
|
| 5971 |
|
|
|
| 5972 |
|
|
for (; *s1 == *s2; s1++, s2++) |
|
|
licm |
hosting load |
lookup |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
PyExpat_XML_ExternalEntityParserCreate |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ExternalEntityParserCreate |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
setContext |
|
|
loop-vectorize |
loop not vectorized |
setContext |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
lookup |
|
|
loop-vectorize |
loop not vectorized |
lookup |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeEntityValue |
|
|
loop-vectorize |
loop not vectorized |
storeEntityValue |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
appendAttributeValue |
|
|
loop-vectorize |
loop not vectorized |
appendAttributeValue |
| 5973 |
|
|
|
| 5974 |
|
|
|
| 5975 |
|
|
|
| 5976 |
|
|
|
| 5977 |
|
|
|
| 5978 |
|
|
static unsigned long FASTCALL |
| 5979 |
|
|
hash(XML_Parser parser, KEY s) |
| 5980 |
|
|
|
| 5981 |
|
|
unsigned long h = hash_secret_salt; |
| 5982 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
lookup |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ExternalEntityParserCreate |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ExternalEntityParserCreate |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
setContext |
|
|
loop-vectorize |
loop not vectorized |
setContext |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
lookup |
|
|
loop-vectorize |
loop not vectorized |
lookup |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeEntityValue |
|
|
loop-vectorize |
loop not vectorized |
storeEntityValue |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
appendAttributeValue |
|
|
loop-vectorize |
loop not vectorized |
appendAttributeValue |
| 5983 |
|
|
|
| 5984 |
|
|
|
| 5985 |
|
|
|
| 5986 |
|
|
|
| 5987 |
|
|
|
| 5988 |
|
|
lookup(XML_Parser parser, HASH_TABLE *table, KEY name, size_t createSize) |
| 5989 |
|
|
|
| 5990 |
|
|
|
| 5991 |
|
|
|
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdCopy |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
doContent |
| 5992 |
|
|
|
| 5993 |
|
|
|
| 5994 |
|
|
|
| 5995 |
|
|
table->power = INIT_POWER; |
| 5996 |
|
|
/* table->size is a power of 2 */ |
| 5997 |
|
|
table->size = (size_t)1 << INIT_POWER; |
| 5998 |
|
|
tsize = table->size * sizeof(NAMED *); |
| 5999 |
|
|
table->v = (NAMED **)table->mem->malloc_fcn(tsize); |
| 6000 |
|
|
|
| 6001 |
|
|
|
| 6002 |
|
|
|
| 6003 |
|
|
|
| 6004 |
|
|
memset(table->v, 0, tsize); |
| 6005 |
|
|
i = hash(parser, name) & ((unsigned long)table->size - 1); |
|
|
inline |
hash can be inlined into lookup with cost=5 (threshold=250) |
lookup |
|
|
inline |
hash inlined into lookup |
lookup |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
lookup |
| 6006 |
|
|
|
| 6007 |
|
|
|
| 6008 |
|
|
unsigned long h = hash(parser, name); |
|
|
inline |
hash can be inlined into lookup with cost=5 (threshold=250) |
lookup |
|
|
inline |
hash inlined into lookup |
lookup |
| 6009 |
|
|
unsigned long mask = (unsigned long)table->size - 1; |
|
|
gvn |
load of type i64 eliminated in favor of load |
lookup |
| 6010 |
|
|
|
| 6011 |
|
|
|
| 6012 |
|
|
|
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
lookup |
|
|
gvn |
load of type %struct.NAMED** eliminated in favor of phi |
lookup |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
dtdCopy |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
storeAtts |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
doContent |
| 6013 |
|
|
if (keyeq(name, table->v[i]->name)) |
|
|
inline |
keyeq can be inlined into lookup with cost=-14990 (threshold=250) |
lookup |
|
|
inline |
keyeq inlined into lookup |
lookup |
| 6014 |
|
|
|
|
|
gvn |
load of type %struct.NAMED** eliminated in favor of load |
lookup |
|
|
gvn |
load of type %struct.NAMED* eliminated in favor of phi |
lookup |
| 6015 |
|
|
|
| 6016 |
|
|
step = PROBE_STEP(h, mask, table->power); |
|
|
licm |
hosting sub |
lookup |
|
|
licm |
hosting and |
lookup |
|
|
licm |
hosting getelementptr |
lookup |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
lookup |
|
|
licm |
hosting lshr |
lookup |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
appendAttributeValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
appendAttributeValue |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
storeEntityValue |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeEntityValue |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
doProlog |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
doContent |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doContent |
| 6017 |
|
|
i < step ? (i += table->size - step) : (i -= step); |
|
|
licm |
failed to hoist load with loop-invariant address because load is conditionally executed |
lookup |
|
|
gvn |
load of type i64 eliminated in favor of phi |
lookup |
| 6018 |
|
|
|
| 6019 |
|
|
|
| 6020 |
|
|
|
| 6021 |
|
|
|
| 6022 |
|
|
/* check for overflow (table is half full) */ |
| 6023 |
|
|
if (table->used >> (table->power - 1)) { |
| 6024 |
|
|
unsigned char newPower = table->power + 1; |
| 6025 |
|
|
size_t newSize = (size_t)1 << newPower; |
| 6026 |
|
|
unsigned long newMask = (unsigned long)newSize - 1; |
| 6027 |
|
|
size_t tsize = newSize * sizeof(NAMED *); |
| 6028 |
|
|
NAMED **newV = (NAMED **)table->mem->malloc_fcn(tsize); |
| 6029 |
|
|
|
| 6030 |
|
|
|
| 6031 |
|
|
|
| 6032 |
|
|
for (i = 0; i < table->size; i++) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
lookup |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
lookup |
|
|
gvn |
load of type i64 eliminated in favor of phi |
lookup |
| 6033 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
lookup |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by store |
lookup |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by call |
lookup |
| 6034 |
|
|
unsigned long newHash = hash(parser, table->v[i]->name); |
|
|
inline |
hash can be inlined into lookup with cost=-14995 (threshold=250) |
lookup |
|
|
inline |
hash inlined into lookup |
lookup |
| 6035 |
|
|
size_t j = newHash & newMask; |
| 6036 |
|
|
|
| 6037 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
lookup |
|
|
loop-vectorize |
loop not vectorized |
lookup |
| 6038 |
|
|
|
| 6039 |
|
|
step = PROBE_STEP(newHash, newMask, newPower); |
|
|
licm |
hosting sub |
lookup |
|
|
licm |
hosting and |
lookup |
|
|
licm |
hosting add |
lookup |
|
|
licm |
hosting zext |
lookup |
|
|
licm |
hosting lshr |
lookup |
|
|
licm |
hosting trunc |
lookup |
|
|
licm |
hosting or |
lookup |
| 6040 |
|
|
j < step ? (j += newSize - step) : (j -= step); |
| 6041 |
|
|
|
| 6042 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
lookup |
|
|
gvn |
load of type %struct.NAMED** eliminated in favor of load |
lookup |
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
lookup |
| 6043 |
|
|
|
| 6044 |
|
|
table->mem->free_fcn(table->v); |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated in favor of load because it is clobbered by call |
lookup |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated in favor of load because it is clobbered by store |
lookup |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
lookup |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
lookup |
| 6045 |
|
|
|
| 6046 |
|
|
|
| 6047 |
|
|
|
| 6048 |
|
|
|
| 6049 |
|
|
|
| 6050 |
|
|
|
|
|
licm |
hosting load |
lookup |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
lookup |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
lookup |
|
|
loop-vectorize |
loop not vectorized |
lookup |
| 6051 |
|
|
|
| 6052 |
|
|
step = PROBE_STEP(h, newMask, newPower); |
|
|
licm |
hosting sub |
lookup |
|
|
licm |
hosting and |
lookup |
|
|
licm |
hosting add |
lookup |
|
|
licm |
hosting zext |
lookup |
|
|
licm |
hosting lshr |
lookup |
|
|
licm |
hosting trunc |
lookup |
|
|
licm |
hosting or |
lookup |
| 6053 |
|
|
i < step ? (i += newSize - step) : (i -= step); |
| 6054 |
|
|
|
| 6055 |
|
|
|
| 6056 |
|
|
|
| 6057 |
|
|
table->v[i] = (NAMED *)table->mem->malloc_fcn(createSize); |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
lookup |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
lookup |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
lookup |
| 6058 |
|
|
|
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by store |
lookup |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
lookup |
| 6059 |
|
|
|
| 6060 |
|
|
memset(table->v[i], 0, createSize); |
| 6061 |
|
|
table->v[i]->name = name; |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
lookup |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
lookup |
| 6062 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
lookup |
| 6063 |
|
|
|
|
|
gvn |
load of type %struct.NAMED** eliminated in favor of load |
lookup |
|
|
gvn |
load of type %struct.NAMED* not eliminated in favor of load because it is clobbered by store |
lookup |
| 6064 |
|
|
|
| 6065 |
|
|
|
| 6066 |
|
|
|
| 6067 |
|
|
hashTableClear(HASH_TABLE *table) |
| 6068 |
|
|
|
| 6069 |
|
|
|
| 6070 |
|
|
for (i = 0; i < table->size; i++) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
hashTableClear |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
hashTableClear |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdReset |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
dtdReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ParserReset |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserReset |
| 6071 |
|
|
table->mem->free_fcn(table->v[i]); |
|
|
licm |
hosting getelementptr |
hashTableClear |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
hashTableClear |
|
|
licm |
hosting getelementptr |
hashTableClear |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
hashTableClear |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by store |
hashTableClear |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
hashTableClear |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdReset |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by store |
dtdReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
dtdReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by store |
dtdReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by store |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by store |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_ParserReset |
| 6072 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
hashTableClear |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by call |
hashTableClear |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
dtdReset |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED** not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
| 6073 |
|
|
|
| 6074 |
|
|
|
| 6075 |
|
|
|
| 6076 |
|
|
|
| 6077 |
|
|
|
| 6078 |
|
|
hashTableDestroy(HASH_TABLE *table) |
| 6079 |
|
|
|
| 6080 |
|
|
|
| 6081 |
|
|
for (i = 0; i < table->size; i++) |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
hashTableDestroy |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
hashTableDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdDestroy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
dtdDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ParserFree |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserFree |
| 6082 |
|
|
table->mem->free_fcn(table->v[i]); |
| 6083 |
|
|
table->mem->free_fcn(table->v); |
| 6084 |
|
|
|
| 6085 |
|
|
|
| 6086 |
|
|
|
| 6087 |
|
|
hashTableInit(HASH_TABLE *p, const XML_Memory_Handling_Suite *ms) |
| 6088 |
|
|
|
| 6089 |
|
|
|
| 6090 |
|
|
|
| 6091 |
|
|
|
| 6092 |
|
|
|
| 6093 |
|
|
|
| 6094 |
|
|
|
| 6095 |
|
|
|
| 6096 |
|
|
|
| 6097 |
|
|
hashTableIterInit(HASH_TABLE_ITER *iter, const HASH_TABLE *table) |
| 6098 |
|
|
|
| 6099 |
|
|
|
| 6100 |
|
|
iter->end = iter->p + table->size; |
| 6101 |
|
|
|
| 6102 |
|
|
|
| 6103 |
|
|
|
| 6104 |
|
|
hashTableIterNext(HASH_TABLE_ITER *iter) |
| 6105 |
|
|
|
| 6106 |
|
|
while (iter->p != iter->end) { |
|
|
licm |
hosting getelementptr |
hashTableIterNext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
hashTableIterNext |
|
|
licm |
hosting getelementptr |
hashTableIterNext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
hashTableIterNext |
|
|
gvn |
load eliminated by PRE |
hashTableIterNext |
|
|
gvn |
load eliminated by PRE |
hashTableIterNext |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
PyExpat_XML_ParserReset |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserReset |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
PyExpat_XML_ExternalEntityParserCreate |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ExternalEntityParserCreate |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
PyExpat_XML_ParserFree |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserFree |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
copyEntityTable |
|
|
loop-vectorize |
loop not vectorized |
copyEntityTable |
| 6107 |
|
|
NAMED *tem = *(iter->p)++; |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
hashTableIterNext |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
getContext |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.NAMED* not eliminated because it is clobbered by store |
doContent |
| 6108 |
|
|
|
| 6109 |
|
|
|
| 6110 |
|
|
|
| 6111 |
|
|
|
| 6112 |
|
|
|
| 6113 |
|
|
|
| 6114 |
|
|
|
| 6115 |
|
|
poolInit(STRING_POOL *pool, const XML_Memory_Handling_Suite *ms) |
| 6116 |
|
|
|
| 6117 |
|
|
|
| 6118 |
|
|
|
| 6119 |
|
|
|
| 6120 |
|
|
|
| 6121 |
|
|
|
| 6122 |
|
|
|
| 6123 |
|
|
|
| 6124 |
|
|
|
| 6125 |
|
|
|
| 6126 |
|
|
poolClear(STRING_POOL *pool) |
| 6127 |
|
|
|
| 6128 |
|
|
|
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by store |
dtdReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by store |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
reportComment |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
| 6129 |
|
|
pool->freeBlocks = pool->blocks; |
| 6130 |
|
|
|
| 6131 |
|
|
|
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by store |
dtdReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
dtdReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by store |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserReset |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
reportComment |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by store |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
doContent |
| 6132 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ParserReset |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserReset |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
processXmlDecl |
|
|
loop-vectorize |
loop not vectorized |
processXmlDecl |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
reportComment |
|
|
loop-vectorize |
loop not vectorized |
reportComment |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
| 6133 |
|
|
|
| 6134 |
|
|
p->next = pool->freeBlocks; |
|
|
licm |
hosting bitcast |
poolClear |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolClear |
|
|
gvn |
load of type i64 eliminated in favor of phi |
poolClear |
| 6135 |
|
|
|
|
|
licm |
Moving accesses to memory location out of the loop |
poolClear |
| 6136 |
|
|
|
| 6137 |
|
|
|
| 6138 |
|
|
|
| 6139 |
|
|
|
| 6140 |
|
|
|
| 6141 |
|
|
|
| 6142 |
|
|
|
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
| 6143 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
hosting bitcast |
doContent |
| 6144 |
|
|
|
| 6145 |
|
|
|
| 6146 |
|
|
poolDestroy(STRING_POOL *pool) |
| 6147 |
|
|
|
| 6148 |
|
|
|
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 6149 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ParserFree |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserFree |
| 6150 |
|
|
|
| 6151 |
|
|
|
|
|
licm |
hosting getelementptr |
poolDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
poolDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 6152 |
|
|
|
| 6153 |
|
|
|
| 6154 |
|
|
|
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
poolDestroy |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.block* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 6155 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
PyExpat_XML_ParserFree |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ParserFree |
| 6156 |
|
|
|
| 6157 |
|
|
|
|
|
licm |
hosting getelementptr |
poolDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
poolDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
poolDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
dtdDestroy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
|
|
gvn |
load of type %struct.XML_Memory_Handling_Suite* not eliminated because it is clobbered by call |
PyExpat_XML_ParserFree |
| 6158 |
|
|
|
| 6159 |
|
|
|
| 6160 |
|
|
|
| 6161 |
|
|
|
| 6162 |
|
|
|
| 6163 |
|
|
poolAppend(STRING_POOL *pool, const ENCODING *enc, |
|
|
licm |
hosting bitcast |
appendAttributeValue |
|
|
licm |
hosting bitcast |
storeEntityValue |
|
|
licm |
hosting bitcast |
storeAtts |
|
|
licm |
hosting bitcast |
doProlog |
|
|
licm |
hosting bitcast |
doContent |
| 6164 |
|
|
const char *ptr, const char *end) |
| 6165 |
|
|
|
| 6166 |
|
|
if (!pool->ptr && !poolGrow(pool)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolAppend |
|
|
inline |
poolGrow will not be inlined into poolAppend |
poolAppend |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolStoreString |
|
|
inline |
poolGrow will not be inlined into poolStoreString |
poolStoreString |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
processXmlDecl |
|
|
inline |
poolGrow will not be inlined into processXmlDecl |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getAttributeId |
|
|
inline |
poolGrow will not be inlined into getAttributeId |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
getAttributeId |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
appendAttributeValue |
|
|
inline |
poolGrow will not be inlined into appendAttributeValue |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeEntityValue |
|
|
inline |
poolGrow will not be inlined into storeEntityValue |
storeEntityValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
reportProcessingInstruction |
|
|
inline |
poolGrow will not be inlined into reportProcessingInstruction |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
reportProcessingInstruction |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
reportComment |
|
|
inline |
poolGrow will not be inlined into reportComment |
reportComment |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAtts |
|
|
inline |
poolGrow will not be inlined into storeAtts |
storeAtts |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 6167 |
|
|
|
| 6168 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
processXmlDecl |
|
|
loop-vectorize |
loop not vectorized |
processXmlDecl |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
getAttributeId |
|
|
loop-vectorize |
loop not vectorized |
getAttributeId |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeEntityValue |
|
|
loop-vectorize |
loop not vectorized |
storeEntityValue |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized |
reportProcessingInstruction |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
reportComment |
|
|
loop-vectorize |
loop not vectorized |
reportComment |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doContent |
|
|
loop-vectorize |
loop not vectorized |
doContent |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
appendAttributeValue |
|
|
loop-vectorize |
loop not vectorized |
appendAttributeValue |
| 6169 |
|
|
XmlConvert(enc, &ptr, end, (ICHAR **)&(pool->ptr), (ICHAR *)pool->end); |
|
|
licm |
hosting getelementptr |
poolAppend |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolAppend |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
poolAppend |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
poolAppend |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolAppend |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolAppend |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolStoreString |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
poolStoreString |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
poolStoreString |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolStoreString |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolStoreString |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getAttributeId |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
getAttributeId |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
getAttributeId |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
getAttributeId |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated in favor of load because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
reportComment |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
reportComment |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportComment |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type void (%struct.encoding*, i8**, i8*, i8**, i8*)* not eliminated because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 6170 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolAppend |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
poolAppend |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolStoreString |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
poolStoreString |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
processXmlDecl |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
getAttributeId |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
reportProcessingInstruction |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
reportComment |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
doContent |
| 6171 |
|
|
|
| 6172 |
|
|
|
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolAppend |
|
|
inline |
poolGrow will not be inlined into poolAppend |
poolAppend |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolStoreString |
|
|
inline |
poolGrow will not be inlined into poolStoreString |
poolStoreString |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
processXmlDecl |
|
|
inline |
poolGrow will not be inlined into processXmlDecl |
processXmlDecl |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getAttributeId |
|
|
inline |
poolGrow will not be inlined into getAttributeId |
getAttributeId |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
appendAttributeValue |
|
|
inline |
poolGrow will not be inlined into appendAttributeValue |
appendAttributeValue |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeEntityValue |
|
|
inline |
poolGrow will not be inlined into storeEntityValue |
storeEntityValue |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
reportProcessingInstruction |
|
|
inline |
poolGrow will not be inlined into reportProcessingInstruction |
reportProcessingInstruction |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
reportComment |
|
|
inline |
poolGrow will not be inlined into reportComment |
reportComment |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAtts |
|
|
inline |
poolGrow will not be inlined into storeAtts |
storeAtts |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
| 6173 |
|
|
|
| 6174 |
|
|
|
| 6175 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolAppend |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolStoreString |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
getAttributeId |
|
|
licm |
hosting getelementptr |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
appendAttributeValue |
|
|
licm |
hosting getelementptr |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportComment |
|
|
licm |
hosting getelementptr |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
storeAtts |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
licm |
hosting getelementptr |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doContent |
| 6176 |
|
|
|
| 6177 |
|
|
|
| 6178 |
|
|
static const XML_Char * FASTCALL |
| 6179 |
|
|
poolCopyString(STRING_POOL *pool, const XML_Char *s) |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
copyEntityTable |
|
|
loop-vectorize |
loop not vectorized |
copyEntityTable |
| 6180 |
|
|
|
| 6181 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
parserInit |
|
|
loop-vectorize |
loop not vectorized |
parserInit |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
PyExpat_XML_SetEncoding |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_SetEncoding |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
PyExpat_XML_ExternalEntityParserCreate |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_ExternalEntityParserCreate |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
setContext |
|
|
loop-vectorize |
loop not vectorized |
setContext |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
PyExpat_XML_SetBase |
|
|
loop-vectorize |
loop not vectorized |
PyExpat_XML_SetBase |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
storeAtts |
|
|
loop-vectorize |
loop not vectorized |
storeAtts |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
copyEntityTable |
|
|
loop-vectorize |
loop not vectorized |
copyEntityTable |
| 6182 |
|
|
if (!poolAppendChar(pool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolCopyString |
|
|
inline |
poolGrow will not be inlined into poolCopyString |
poolCopyString |
|
|
licm |
hosting getelementptr |
poolCopyString |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolCopyString |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
poolCopyString |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
poolCopyString |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
poolCopyString |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
poolCopyString |
|
|
gvn |
load eliminated by PRE |
poolCopyString |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
parserInit |
|
|
inline |
poolGrow will not be inlined into parserInit |
parserInit |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
parserInit |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
parserInit |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
parserInit |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
parserInit |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
parserInit |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
parserInit |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
PyExpat_XML_SetEncoding |
|
|
inline |
poolGrow will not be inlined into PyExpat_XML_SetEncoding |
PyExpat_XML_SetEncoding |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_SetEncoding |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_SetEncoding |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
PyExpat_XML_SetEncoding |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_SetEncoding |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
copyEntityTable |
|
|
inline |
poolGrow will not be inlined into copyEntityTable |
copyEntityTable |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load eliminated by PRE |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
dtdCopy |
|
|
inline |
poolGrow will not be inlined into dtdCopy |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
dtdCopy |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
setContext |
|
|
inline |
poolGrow will not be inlined into setContext |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
setContext |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
poolGrow will not be inlined into PyExpat_XML_ExternalEntityParserCreate |
PyExpat_XML_ExternalEntityParserCreate |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAtts |
|
|
inline |
poolGrow will not be inlined into storeAtts |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
storeAtts |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
PyExpat_XML_SetBase |
|
|
inline |
poolGrow will not be inlined into PyExpat_XML_SetBase |
PyExpat_XML_SetBase |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_SetBase |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_SetBase |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
PyExpat_XML_SetBase |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
PyExpat_XML_SetBase |
| 6183 |
|
|
|
| 6184 |
|
|
|
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
poolCopyString |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
parserInit |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_SetEncoding |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
setContext |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_SetBase |
| 6185 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
poolCopyString |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
parserInit |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_SetEncoding |
|
|
licm |
hosting getelementptr |
copyEntityTable |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
|
|
licm |
hosting getelementptr |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
dtdCopy |
|
|
licm |
hosting getelementptr |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
PyExpat_XML_SetBase |
| 6186 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
poolCopyString |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
parserInit |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
PyExpat_XML_SetEncoding |
|
|
licm |
hosting bitcast |
copyEntityTable |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
copyEntityTable |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
|
|
licm |
hosting bitcast |
dtdCopy |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
dtdCopy |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
dtdCopy |
|
|
licm |
hosting bitcast |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
setContext |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
setContext |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
PyExpat_XML_ExternalEntityParserCreate |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
storeAtts |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
PyExpat_XML_SetBase |
| 6187 |
|
|
|
| 6188 |
|
|
|
| 6189 |
|
|
|
| 6190 |
|
|
|
| 6191 |
|
|
poolCopyStringN(STRING_POOL *pool, const XML_Char *s, int n) |
| 6192 |
|
|
|
| 6193 |
|
|
if (!pool->ptr && !poolGrow(pool)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolCopyStringN |
|
|
inline |
poolGrow will not be inlined into poolCopyStringN |
poolCopyStringN |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
copyEntityTable |
|
|
inline |
poolGrow will not be inlined into copyEntityTable |
copyEntityTable |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
copyEntityTable |
| 6194 |
|
|
|
| 6195 |
|
|
for (; n > 0; --n, s++) { |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
copyEntityTable |
|
|
loop-vectorize |
loop not vectorized |
copyEntityTable |
| 6196 |
|
|
if (!poolAppendChar(pool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolCopyStringN |
|
|
inline |
poolGrow will not be inlined into poolCopyStringN |
poolCopyStringN |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolCopyStringN |
|
|
licm |
hosting getelementptr |
poolCopyStringN |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
poolCopyStringN |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
poolCopyStringN |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
poolCopyStringN |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolCopyStringN |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
poolCopyStringN |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
poolCopyStringN |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
poolCopyStringN |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolCopyStringN |
|
|
gvn |
load eliminated by PRE |
poolCopyStringN |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
copyEntityTable |
|
|
inline |
poolGrow will not be inlined into copyEntityTable |
copyEntityTable |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
copyEntityTable |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
copyEntityTable |
| 6197 |
|
|
|
| 6198 |
|
|
|
| 6199 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
poolCopyStringN |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolCopyStringN |
|
|
licm |
hosting getelementptr |
copyEntityTable |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
| 6200 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by store |
poolCopyStringN |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
poolCopyStringN |
|
|
licm |
hosting bitcast |
copyEntityTable |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
copyEntityTable |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by call |
copyEntityTable |
|
|
gvn |
load of type i64 not eliminated in favor of load because it is clobbered by store |
copyEntityTable |
| 6201 |
|
|
|
| 6202 |
|
|
|
| 6203 |
|
|
|
| 6204 |
|
|
static const XML_Char * FASTCALL |
| 6205 |
|
|
poolAppendString(STRING_POOL *pool, const XML_Char *s) |
| 6206 |
|
|
|
| 6207 |
|
|
|
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
poolAppendString |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
doProlog |
|
|
loop-vectorize |
loop not vectorized: loop control flow is not understood by vectorizer |
doProlog |
|
|
loop-vectorize |
loop not vectorized |
doProlog |
| 6208 |
|
|
if (!poolAppendChar(pool, *s)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolAppendString |
|
|
inline |
poolGrow will not be inlined into poolAppendString |
poolAppendString |
|
|
licm |
hosting getelementptr |
poolAppendString |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
poolAppendString |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
poolAppendString |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by call |
poolAppendString |
|
|
gvn |
load eliminated by PRE |
poolAppendString |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
poolAppendString |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 6209 |
|
|
|
| 6210 |
|
|
|
| 6211 |
|
|
|
| 6212 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
poolAppendString |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
doProlog |
| 6213 |
|
|
|
| 6214 |
|
|
|
| 6215 |
|
|
|
| 6216 |
|
|
poolStoreString(STRING_POOL *pool, const ENCODING *enc, |
| 6217 |
|
|
const char *ptr, const char *end) |
| 6218 |
|
|
|
| 6219 |
|
|
if (!poolAppend(pool, enc, ptr, end)) |
|
|
inline |
poolAppend can be inlined into poolStoreString with cost=125 (threshold=250) |
poolStoreString |
|
|
inline |
poolAppend inlined into poolStoreString |
poolStoreString |
| 6220 |
|
|
|
| 6221 |
|
|
if (pool->ptr == pool->end && !poolGrow(pool)) |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
poolStoreString |
|
|
inline |
poolGrow will not be inlined into poolStoreString |
poolStoreString |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
poolStoreString |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
poolStoreString |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
processXmlDecl |
|
|
inline |
poolGrow will not be inlined into processXmlDecl |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
processXmlDecl |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
getAttributeId |
|
|
inline |
poolGrow will not be inlined into getAttributeId |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated in favor of store because it is clobbered by call |
getAttributeId |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
getAttributeId |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
appendAttributeValue |
|
|
inline |
poolGrow will not be inlined into appendAttributeValue |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
appendAttributeValue |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeEntityValue |
|
|
inline |
poolGrow will not be inlined into storeEntityValue |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeEntityValue |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
reportProcessingInstruction |
|
|
inline |
poolGrow will not be inlined into reportProcessingInstruction |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
reportProcessingInstruction |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
reportComment |
|
|
inline |
poolGrow will not be inlined into reportComment |
reportComment |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
reportComment |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
reportComment |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
storeAtts |
|
|
inline |
poolGrow will not be inlined into storeAtts |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
storeAtts |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doProlog |
|
|
inline |
poolGrow will not be inlined into doProlog |
doProlog |
|
|
inline |
poolGrow too costly to inline (cost=455, threshold=250) |
doContent |
|
|
inline |
poolGrow will not be inlined into doContent |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by call |
doContent |
| 6222 |
|
|
|
| 6223 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolStoreString |
|
|
gvn |
load eliminated by PRE |
poolStoreString |
| 6224 |
|
|
|
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
poolStoreString |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
processXmlDecl |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
getAttributeId |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
appendAttributeValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
appendAttributeValue |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeEntityValue |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
reportProcessingInstruction |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
reportComment |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
storeAtts |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
storeAtts |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doContent |
|
|
gvn |
load of type i8* not eliminated in favor of load because it is clobbered by store |
doContent |
| 6225 |
|
|
|
| 6226 |
|
|
|
| 6227 |
|
|
|
| 6228 |
|
|
poolGrow(STRING_POOL *pool) |
| 6229 |
|
|
|
| 6230 |
|
|
|
| 6231 |
|
|
|
| 6232 |
|
|
pool->blocks = pool->freeBlocks; |
| 6233 |
|
|
pool->freeBlocks = pool->freeBlocks->next; |
| 6234 |
|
|
pool->blocks->next = NULL; |
| 6235 |
|
|
pool->start = pool->blocks->s; |
| 6236 |
|
|
pool->end = pool->start + pool->blocks->size; |
| 6237 |
|
|
|
|
|
gvn |
load of type i64 eliminated in favor of ptrtoint |
poolGrow |
| 6238 |
|
|
|
| 6239 |
|
|
|
| 6240 |
|
|
if (pool->end - pool->start < pool->freeBlocks->size) { |
| 6241 |
|
|
BLOCK *tem = pool->freeBlocks->next; |
| 6242 |
|
|
pool->freeBlocks->next = pool->blocks; |
| 6243 |
|
|
pool->blocks = pool->freeBlocks; |
| 6244 |
|
|
|
| 6245 |
|
|
memcpy(pool->blocks->s, pool->start, |
|
|
gvn |
load of type i8* eliminated in favor of load |
poolGrow |
| 6246 |
|
|
(pool->end - pool->start) * sizeof(XML_Char)); |
| 6247 |
|
|
pool->ptr = pool->blocks->s + (pool->ptr - pool->start); |
|
|
gvn |
load of type %struct.block* not eliminated in favor of store because it is clobbered by call |
poolGrow |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
poolGrow |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
poolGrow |
| 6248 |
|
|
pool->start = pool->blocks->s; |
|
|
gvn |
load of type %struct.block* eliminated in favor of load |
poolGrow |
| 6249 |
|
|
pool->end = pool->start + pool->blocks->size; |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
poolGrow |
| 6250 |
|
|
|
| 6251 |
|
|
|
| 6252 |
|
|
|
| 6253 |
|
|
if (pool->blocks && pool->start == pool->blocks->s) { |
| 6254 |
|
|
int blockSize = (int)(pool->end - pool->start)*2; |
|
|
gvn |
load eliminated by PRE |
poolGrow |
| 6255 |
|
|
|
| 6256 |
|
|
pool->mem->realloc_fcn(pool->blocks, |
| 6257 |
|
|
|
| 6258 |
|
|
+ blockSize * sizeof(XML_Char))); |
| 6259 |
|
|
|
| 6260 |
|
|
|
| 6261 |
|
|
|
| 6262 |
|
|
pool->blocks->size = blockSize; |
| 6263 |
|
|
pool->ptr = pool->blocks->s + (pool->ptr - pool->start); |
|
|
gvn |
load of type %struct.block* eliminated in favor of inttoptr |
poolGrow |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
poolGrow |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
poolGrow |
| 6264 |
|
|
pool->start = pool->blocks->s; |
| 6265 |
|
|
pool->end = pool->start + blockSize; |
| 6266 |
|
|
|
| 6267 |
|
|
|
| 6268 |
|
|
|
| 6269 |
|
|
int blockSize = (int)(pool->end - pool->start); |
|
|
gvn |
load eliminated by PRE |
poolGrow |
| 6270 |
|
|
if (blockSize < INIT_BLOCK_SIZE) |
| 6271 |
|
|
blockSize = INIT_BLOCK_SIZE; |
| 6272 |
|
|
|
| 6273 |
|
|
|
| 6274 |
|
|
tem = (BLOCK *)pool->mem->malloc_fcn(offsetof(BLOCK, s) |
| 6275 |
|
|
+ blockSize * sizeof(XML_Char)); |
| 6276 |
|
|
|
| 6277 |
|
|
|
| 6278 |
|
|
|
| 6279 |
|
|
tem->next = pool->blocks; |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
poolGrow |
| 6280 |
|
|
|
| 6281 |
|
|
if (pool->ptr != pool->start) |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolGrow |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
poolGrow |
| 6282 |
|
|
memcpy(tem->s, pool->start, |
| 6283 |
|
|
(pool->ptr - pool->start) * sizeof(XML_Char)); |
| 6284 |
|
|
pool->ptr = tem->s + (pool->ptr - pool->start); |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
poolGrow |
|
|
gvn |
load eliminated by PRE |
poolGrow |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
poolGrow |
|
|
gvn |
load eliminated by PRE |
poolGrow |
| 6285 |
|
|
|
| 6286 |
|
|
pool->end = tem->s + blockSize; |
| 6287 |
|
|
|
| 6288 |
|
|
|
| 6289 |
|
|
|
| 6290 |
|
|
|
| 6291 |
|
|
|
| 6292 |
|
|
nextScaffoldPart(XML_Parser parser) |
| 6293 |
|
|
|
| 6294 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
| 6295 |
|
|
|
| 6296 |
|
|
|
| 6297 |
|
|
|
| 6298 |
|
|
|
| 6299 |
|
|
dtd->scaffIndex = (int *)MALLOC(groupSize * sizeof(int)); |
| 6300 |
|
|
|
| 6301 |
|
|
|
| 6302 |
|
|
|
| 6303 |
|
|
|
| 6304 |
|
|
|
| 6305 |
|
|
if (dtd->scaffCount >= dtd->scaffSize) { |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
nextScaffoldPart |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
nextScaffoldPart |
| 6306 |
|
|
|
| 6307 |
|
|
|
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated because it is clobbered by call |
nextScaffoldPart |
| 6308 |
|
|
temp = (CONTENT_SCAFFOLD *) |
| 6309 |
|
|
REALLOC(dtd->scaffold, dtd->scaffSize * 2 * sizeof(CONTENT_SCAFFOLD)); |
|
|
gvn |
load of type i8* (i8*, i64)* not eliminated because it is clobbered by call |
nextScaffoldPart |
| 6310 |
|
|
|
| 6311 |
|
|
|
| 6312 |
|
|
|
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
nextScaffoldPart |
| 6313 |
|
|
|
| 6314 |
|
|
|
| 6315 |
|
|
temp = (CONTENT_SCAFFOLD *)MALLOC(INIT_SCAFFOLD_ELEMENTS |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
nextScaffoldPart |
| 6316 |
|
|
* sizeof(CONTENT_SCAFFOLD)); |
| 6317 |
|
|
|
| 6318 |
|
|
|
| 6319 |
|
|
dtd->scaffSize = INIT_SCAFFOLD_ELEMENTS; |
| 6320 |
|
|
|
| 6321 |
|
|
|
| 6322 |
|
|
|
| 6323 |
|
|
next = dtd->scaffCount++; |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
nextScaffoldPart |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
nextScaffoldPart |
|
|
gvn |
load eliminated by PRE |
nextScaffoldPart |
| 6324 |
|
|
me = &dtd->scaffold[next]; |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated because it is clobbered by call |
nextScaffoldPart |
|
|
gvn |
load eliminated by PRE |
nextScaffoldPart |
| 6325 |
|
|
|
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
nextScaffoldPart |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
nextScaffoldPart |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by call |
nextScaffoldPart |
| 6326 |
|
|
CONTENT_SCAFFOLD *parent = &dtd->scaffold[dtd->scaffIndex[dtd->scaffLevel-1]]; |
|
|
gvn |
load of type i32* not eliminated in favor of load because it is clobbered by call |
nextScaffoldPart |
|
|
gvn |
load of type i32* not eliminated in favor of load because it is clobbered by call |
nextScaffoldPart |
| 6327 |
|
|
|
| 6328 |
|
|
dtd->scaffold[parent->lastchild].nextsib = next; |
| 6329 |
|
|
|
| 6330 |
|
|
|
| 6331 |
|
|
parent->firstchild = next; |
| 6332 |
|
|
parent->lastchild = next; |
| 6333 |
|
|
|
| 6334 |
|
|
|
| 6335 |
|
|
me->firstchild = me->lastchild = me->childcnt = me->nextsib = 0; |
| 6336 |
|
|
|
| 6337 |
|
|
|
| 6338 |
|
|
|
| 6339 |
|
|
|
| 6340 |
|
|
build_node(XML_Parser parser, |
| 6341 |
|
|
|
| 6342 |
|
|
|
| 6343 |
|
|
|
| 6344 |
|
|
|
| 6345 |
|
|
|
| 6346 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
| 6347 |
|
|
dest->type = dtd->scaffold[src_node].type; |
| 6348 |
|
|
dest->quant = dtd->scaffold[src_node].quant; |
| 6349 |
|
|
if (dest->type == XML_CTYPE_NAME) { |
| 6350 |
|
|
|
| 6351 |
|
|
|
| 6352 |
|
|
src = dtd->scaffold[src_node].name; |
| 6353 |
|
|
|
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
build_node |
|
|
loop-vectorize |
loop not vectorized |
build_node |
| 6354 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
build_node |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
build_node |
|
|
gvn |
load of type i8 not eliminated because it is clobbered by store |
build_node |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
build_node |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by store |
build_node |
| 6355 |
|
|
|
|
|
gvn |
load of type i8 not eliminated in favor of load because it is clobbered by store |
build_node |
| 6356 |
|
|
|
| 6357 |
|
|
|
| 6358 |
|
|
|
| 6359 |
|
|
|
| 6360 |
|
|
|
| 6361 |
|
|
|
| 6362 |
|
|
|
| 6363 |
|
|
|
| 6364 |
|
|
|
| 6365 |
|
|
dest->numchildren = dtd->scaffold[src_node].childcnt; |
|
|
gvn |
load of type i32 not eliminated because it is clobbered by store |
build_node |
| 6366 |
|
|
dest->children = *contpos; |
| 6367 |
|
|
*contpos += dest->numchildren; |
|
|
gvn |
load of type %struct.XML_cp* not eliminated because it is clobbered by store |
build_node |
| 6368 |
|
|
for (i = 0, cn = dtd->scaffold[src_node].firstchild; |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated in favor of load because it is clobbered by store |
build_node |
|
|
loop-vectorize |
loop not vectorized: could not determine number of loop iterations |
build_node |
|
|
loop-vectorize |
loop not vectorized |
build_node |
| 6369 |
|
|
|
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
build_node |
|
|
gvn |
load of type i32 eliminated in favor of load |
build_node |
|
|
gvn |
load of type i32 not eliminated in favor of store because it is clobbered by call |
build_node |
| 6370 |
|
|
i++, cn = dtd->scaffold[cn].nextsib) { |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
build_node |
|
|
gvn |
load of type %struct.CONTENT_SCAFFOLD* not eliminated because it is clobbered by call |
build_node |
| 6371 |
|
|
build_node(parser, cn, &(dest->children[i]), contpos, strpos); |
|
|
inline |
build_node should never be inlined (cost=never) |
build_node |
|
|
inline |
build_node will not be inlined into build_node |
build_node |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
build_node |
|
|
gvn |
load of type %struct.XML_cp* not eliminated because it is clobbered by call |
build_node |
|
|
gvn |
load of type %struct.XML_cp* not eliminated because it is clobbered by store |
build_node |
| 6372 |
|
|
|
| 6373 |
|
|
|
| 6374 |
|
|
|
| 6375 |
|
|
|
| 6376 |
|
|
|
| 6377 |
|
|
|
| 6378 |
|
|
build_model (XML_Parser parser) |
| 6379 |
|
|
|
| 6380 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.DTD* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 6381 |
|
|
|
| 6382 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
| 6383 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
| 6384 |
|
|
int allocsize = (dtd->scaffCount * sizeof(XML_Content) |
| 6385 |
|
|
+ (dtd->contentStringLen * sizeof(XML_Char))); |
| 6386 |
|
|
|
| 6387 |
|
|
ret = (XML_Content *)MALLOC(allocsize); |
|
|
licm |
hosting getelementptr |
doProlog |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type i8* (i64)* not eliminated because it is clobbered by call |
doProlog |
| 6388 |
|
|
|
| 6389 |
|
|
|
| 6390 |
|
|
|
| 6391 |
|
|
str = (XML_Char *) (&ret[dtd->scaffCount]); |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
build_model |
|
|
licm |
hosting bitcast |
doProlog |
|
|
gvn |
load of type i32 not eliminated in favor of load because it is clobbered by call |
doProlog |
| 6392 |
|
|
|
|
|
licm |
hosting bitcast |
doProlog |
| 6393 |
|
|
|
| 6394 |
|
|
build_node(parser, 0, ret, &cpos, &str); |
|
|
inline |
build_node should never be inlined (cost=never) |
build_model |
|
|
inline |
build_node will not be inlined into build_model |
build_model |
|
|
inline |
build_node should never be inlined (cost=never) |
doProlog |
|
|
inline |
build_node will not be inlined into doProlog |
doProlog |
| 6395 |
|
|
|
| 6396 |
|
|
|
| 6397 |
|
|
|
| 6398 |
|
|
|
| 6399 |
|
|
getElementType(XML_Parser parser, |
| 6400 |
|
|
|
| 6401 |
|
|
|
| 6402 |
|
|
|
| 6403 |
|
|
|
| 6404 |
|
|
DTD * const dtd = _dtd; /* save one level of indirection */ |
|
|
licm |
failed to move load with loop-invariant address because the loop may invalidate its value |
doProlog |
|
|
gvn |
load of type %struct.DTD* not eliminated in favor of load because it is clobbered by call |
doProlog |
|
|
gvn |
load of type %struct.DTD* not eliminated in favor of load because it is clobbered by call |
doProlog |
| 6405 |
|
|
const XML_Char *name = poolStoreString(&dtd->pool, enc, ptr, end); |
|
|
inline |
Not inlining. Cost of inlining poolStoreString increases the cost of inlining getElementType in other contexts |
getElementType |
|
|
inline |
poolStoreString will not be inlined into getElementType |
getElementType |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=220 (threshold=250) |
doProlog |
|
|
inline |
poolStoreString inlined into doProlog |
doProlog |
|
|
inline |
poolStoreString can be inlined into doProlog with cost=-14780 (threshold=250) |
doProlog |
| 6406 |
|
|
|
| 6407 |
|
|
|
| 6408 |
|
|
|
| 6409 |
|
|
|
| 6410 |
|
|
ret = (ELEMENT_TYPE *) lookup(parser, &dtd->elementTypes, name, sizeof(ELEMENT_TYPE)); |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
getElementType |
|
|
inline |
lookup will not be inlined into getElementType |
getElementType |
|
|
inline |
lookup too costly to inline (cost=630, threshold=625) |
doProlog |
|
|
inline |
lookup will not be inlined into doProlog |
doProlog |
| 6411 |
|
|
|
| 6412 |
|
|
|
| 6413 |
|
|
|
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
getElementType |
|
|
gvn |
load of type i8* not eliminated because it is clobbered by call |
doProlog |
| 6414 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
getElementType |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 6415 |
|
|
|
| 6416 |
|
|
|
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
getElementType |
|
|
gvn |
load of type i64 not eliminated because it is clobbered by call |
doProlog |
| 6417 |
|
|
if (!setElementTypePrefix(parser, ret)) |
|
|
inline |
setElementTypePrefix too costly to inline (cost=285, threshold=250) |
getElementType |
|
|
inline |
setElementTypePrefix will not be inlined into getElementType |
getElementType |
|
|
inline |
setElementTypePrefix too costly to inline (cost=285, threshold=250) |
doProlog |
|
|
inline |
setElementTypePrefix will not be inlined into doProlog |
doProlog |
| 6418 |
|
|
|
| 6419 |
|
|
|
| 6420 |
|
|
|
| 6421 |
|
|
|
| 6422 |
|
|
|
| 6423 |
|
|
|